diff options
author | Torbjörn Andersson | 2009-09-13 10:32:55 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-09-13 10:32:55 +0000 |
commit | e7469479ceebf341322fafbcbddd9028e8a42060 (patch) | |
tree | fdaea0e847a0b1953e0e6e06c0983de0becae14a /engines/scumm | |
parent | e53de46b4fd1357cce5bb53c02de2c88f85169cc (diff) | |
download | scummvm-rg350-e7469479ceebf341322fafbcbddd9028e8a42060.tar.gz scummvm-rg350-e7469479ceebf341322fafbcbddd9028e8a42060.tar.bz2 scummvm-rg350-e7469479ceebf341322fafbcbddd9028e8a42060.zip |
Removed unnecessary semi-colons.
svn-id: r44048
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/he/palette_he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/he/palette_he.cpp b/engines/scumm/he/palette_he.cpp index ff29f9ecd0..6ef68d981e 100644 --- a/engines/scumm/he/palette_he.cpp +++ b/engines/scumm/he/palette_he.cpp @@ -110,7 +110,7 @@ int ScummEngine_v90he::getHEPaletteSimilarColor(int palSlot, int red, int green, int ScummEngine_v90he::getHEPalette16BitColorComponent(int component, int type) { uint16 col; if (type == 2) { - col = (((component & 0xFFFF) >> 0) & 0x1F) << 3;; + col = (((component & 0xFFFF) >> 0) & 0x1F) << 3; } else if (type == 1) { col = (((component & 0xFFFF) >> 5) & 0x1F) << 3; } else { |