diff options
Diffstat (limited to 'graphics/scaler.cpp')
-rw-r--r-- | graphics/scaler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/scaler.cpp b/graphics/scaler.cpp index 79381066ba..428e8a4605 100644 --- a/graphics/scaler.cpp +++ b/graphics/scaler.cpp @@ -112,10 +112,10 @@ void InitScalers(uint32 BitFormat) { } void DestroyScalers(){ - // FIXME: these cause memory access violation problems in some - // 640x480 games, when using the HQ2x graphics scaler - //free(RGBtoYUV); - //free(LUT16to32); + free(RGBtoYUV); + free(LUT16to32); + RGBtoYUV = 0; + LUT16to32 = 0; } |