diff options
author | twinaphex | 2015-11-05 15:16:35 +0100 |
---|---|---|
committer | twinaphex | 2015-11-05 15:16:35 +0100 |
commit | 0535391a61dd331fbc5983e37adaeff1ac574831 (patch) | |
tree | 33dae6accb125dbb45f92a707b32d5e1ac48f95d | |
parent | 142828109928254b7945820449b4272dc35f9225 (diff) | |
download | snesemu-0535391a61dd331fbc5983e37adaeff1ac574831.tar.gz snesemu-0535391a61dd331fbc5983e37adaeff1ac574831.tar.bz2 snesemu-0535391a61dd331fbc5983e37adaeff1ac574831.zip |
Silence warning
-rw-r--r-- | source/gfx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/gfx.c b/source/gfx.c index ba077e4..1c3efa1 100644 --- a/source/gfx.c +++ b/source/gfx.c @@ -2565,6 +2565,7 @@ static void DrawBackground(uint32_t BGMode, uint32_t bg, uint8_t Z1, uint8_t Z2) #define RENDER_BACKGROUND_MODE7(TYPE,FUNC) \ uint16_t *ScreenColors = IPPU.ScreenColors; \ + (void)ScreenColors; \ CHECK_SOUND(); \ \ uint8_t *VRAM1 = Memory.VRAM + 1; \ |