diff options
author | Ludvig Strigeus | 2001-10-10 16:29:59 +0000 |
---|---|---|
committer | Ludvig Strigeus | 2001-10-10 16:29:59 +0000 |
commit | 5c2d7af8e6fb0a8554826186c970b0402c12f19e (patch) | |
tree | 386ad6227b3d31d48d5822ce43d40d6b28fa6b2d | |
parent | 1ec6a4300853067dbf42508982f3a7981780228c (diff) | |
download | scummvm-rg350-5c2d7af8e6fb0a8554826186c970b0402c12f19e.tar.gz scummvm-rg350-5c2d7af8e6fb0a8554826186c970b0402c12f19e.tar.bz2 scummvm-rg350-5c2d7af8e6fb0a8554826186c970b0402c12f19e.zip |
temporary fix to prevent freeze in stan's room until sound is there
svn-id: r3420
-rw-r--r-- | scummvm.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scummvm.cpp b/scummvm.cpp index 0f69609b3e..84c6b4a680 100644 --- a/scummvm.cpp +++ b/scummvm.cpp @@ -17,6 +17,9 @@ * * Change Log: * $Log$ + * Revision 1.5 2001/10/10 16:29:59 strigeus + * temporary fix to prevent freeze in stan's room until sound is there + * * Revision 1.4 2001/10/10 10:02:33 strigeus * alternative mouse cursor * basic save&load @@ -623,11 +626,10 @@ void Scumm::dumpResource(char *tag, int index, byte *ptr) { char buf[256]; FILE *out; - return; - + uint32 size = READ_BE_UINT32_UNALIGNED(ptr+4); - sprintf(buf, "d:\\monkey2\\dumps\\%s%d.dmp", tag,index); + sprintf(buf, "f:\\descumm\\%s%d.dmp", tag,index); out = fopen(buf,"rb"); if (!out) { |