[Scummvm-cvs-logs] SF.net SVN: scummvm: [31247] scummvm/trunk/graphics/scaler.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Wed Mar 26 21:49:46 CET 2008
Revision: 31247
http://scummvm.svn.sourceforge.net/scummvm/?rev=31247&view=rev
Author: thebluegr
Date: 2008-03-26 13:49:45 -0700 (Wed, 26 Mar 2008)
Log Message:
-----------
Commented out two frees() in DestroyScalers(), introduced with commit #31244 and added a FIXME - these cause crashes with 640x480 games, when using an HQ2x scaler
Modified Paths:
--------------
scummvm/trunk/graphics/scaler.cpp
Modified: scummvm/trunk/graphics/scaler.cpp
===================================================================
--- scummvm/trunk/graphics/scaler.cpp 2008-03-26 20:28:31 UTC (rev 31246)
+++ scummvm/trunk/graphics/scaler.cpp 2008-03-26 20:49:45 UTC (rev 31247)
@@ -112,8 +112,10 @@
}
void DestroyScalers(){
- free(RGBtoYUV);
- free(LUT16to32);
+ // FIXME: these cause memory access violation problems in some
+ // 640x480 games, when using the HQ2x graphics scaler
+ //free(RGBtoYUV);
+ //free(LUT16to32);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list