diff options
author | Torbjörn Andersson | 2015-05-31 09:21:23 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2015-05-31 09:21:23 +0200 |
commit | 3c9a5f02d2555dec0b2e2192a6ae96a224f05d50 (patch) | |
tree | b0ecac0cddaaefc489db78899e74ab85265c2b02 /engines | |
parent | 40f5d26c92b524e50f33be57d8fff929cc225705 (diff) | |
download | scummvm-rg350-3c9a5f02d2555dec0b2e2192a6ae96a224f05d50.tar.gz scummvm-rg350-3c9a5f02d2555dec0b2e2192a6ae96a224f05d50.tar.bz2 scummvm-rg350-3c9a5f02d2555dec0b2e2192a6ae96a224f05d50.zip |
MADS: Remove unnecessary semicolon
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/palette.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/palette.cpp b/engines/mads/palette.cpp index 36c9e5694f..7651fe8e65 100644 --- a/engines/mads/palette.cpp +++ b/engines/mads/palette.cpp @@ -497,7 +497,7 @@ void Fader::fadeIn(byte palette[PALETTE_SIZE], byte destPalette[PALETTE_SIZE], int baseColor, int numColors, int baseGrey, int numGreys, int tickDelay, int steps) { GreyEntry map[PALETTE_COUNT]; - byte tempPal[PALETTE_SIZE];; + byte tempPal[PALETTE_SIZE]; int8 signs[PALETTE_COUNT][3]; byte palIndex[PALETTE_COUNT][3]; int intensity; |