[Scummvm-cvs-logs] CVS: scummvm/scumm scumm.cpp,1.646,1.647
Joost Peters
joostp at users.sourceforge.net
Sun Nov 20 09:36:04 CET 2005
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17434/scumm
Modified Files:
scumm.cpp
Log Message:
Increase maxHeapThreshold to 6M for SCUMM games with the GF_NEW_COSTUMES feature, the old value of 2.5M was too small to contain all resources for certain scenes in The Dig and COMI.
Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.646
retrieving revision 1.647
diff -u -d -r1.646 -r1.647
--- scumm.cpp 20 Nov 2005 08:29:17 -0000 1.646
+++ scumm.cpp 20 Nov 2005 17:35:07 -0000 1.647
@@ -1755,10 +1755,7 @@
} else if (_features & GF_NEW_COSTUMES) {
// Since the new costumes are very big, we increase the heap limit, to avoid having
// to constantly reload stuff from the data files.
- res._maxHeapThreshold = 2500000;
-#ifdef __PLAYSTATION2__
res._maxHeapThreshold = 6 * 1024 * 1024;
-#endif
} else {
res._maxHeapThreshold = 550000;
}
More information about the Scummvm-git-logs
mailing list