diff options
author | Johannes Schickel | 2008-11-20 22:58:22 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-11-20 22:58:22 +0000 |
commit | f4d8ecaf6a697fd90d068f363e74d1bab3da7f80 (patch) | |
tree | 8b8ee3f9030eda59a3c3d1009ac77ff4d1dc0c71 /engines | |
parent | 325b4cb492d51705a1b14c412008de0b2d2a608d (diff) | |
download | scummvm-rg350-f4d8ecaf6a697fd90d068f363e74d1bab3da7f80.tar.gz scummvm-rg350-f4d8ecaf6a697fd90d068f363e74d1bab3da7f80.tar.bz2 scummvm-rg350-f4d8ecaf6a697fd90d068f363e74d1bab3da7f80.zip |
Fixed gcc warning.
svn-id: r35137
Diffstat (limited to 'engines')
-rw-r--r-- | engines/cine/pal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/pal.cpp b/engines/cine/pal.cpp index 414746fbf5..c06f39fe03 100644 --- a/engines/cine/pal.cpp +++ b/engines/cine/pal.cpp @@ -168,7 +168,7 @@ byte& Palette::getComponent(byte colorIndex, byte componentIndex) { void Palette::setComponent(byte colorIndex, byte componentIndex, byte value) { getComponent(colorIndex, componentIndex) = value; -}; +} Palette::PackedColor Palette::getColor(byte colorIndex) { return (getComponent(colorIndex, R_INDEX) << (R_INDEX * BITS_PER_COMPONENT)) | |