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

svn-id: r31247
This commit is contained in:
Filippos Karapetis 2008-03-26 20:49:45 +00:00
parent 4b0bdc7a08
commit 8ca0c65cbd

View File

@ -112,8 +112,10 @@ void InitScalers(uint32 BitFormat) {
}
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);
}