diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/scaler.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/scaler.cpp b/graphics/scaler.cpp index d80003761b..79381066ba 100644 --- a/graphics/scaler.cpp +++ b/graphics/scaler.cpp @@ -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); } |