aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2015-05-31 09:21:23 +0200
committerTorbjörn Andersson2015-05-31 09:21:23 +0200
commit3c9a5f02d2555dec0b2e2192a6ae96a224f05d50 (patch)
treeb0ecac0cddaaefc489db78899e74ab85265c2b02
parent40f5d26c92b524e50f33be57d8fff929cc225705 (diff)
downloadscummvm-rg350-3c9a5f02d2555dec0b2e2192a6ae96a224f05d50.tar.gz
scummvm-rg350-3c9a5f02d2555dec0b2e2192a6ae96a224f05d50.tar.bz2
scummvm-rg350-3c9a5f02d2555dec0b2e2192a6ae96a224f05d50.zip
MADS: Remove unnecessary semicolon
-rw-r--r--engines/mads/palette.cpp2
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;