aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2008-11-20 22:58:22 +0000
committerJohannes Schickel2008-11-20 22:58:22 +0000
commitf4d8ecaf6a697fd90d068f363e74d1bab3da7f80 (patch)
tree8b8ee3f9030eda59a3c3d1009ac77ff4d1dc0c71
parent325b4cb492d51705a1b14c412008de0b2d2a608d (diff)
downloadscummvm-rg350-f4d8ecaf6a697fd90d068f363e74d1bab3da7f80.tar.gz
scummvm-rg350-f4d8ecaf6a697fd90d068f363e74d1bab3da7f80.tar.bz2
scummvm-rg350-f4d8ecaf6a697fd90d068f363e74d1bab3da7f80.zip
Fixed gcc warning.
svn-id: r35137
-rw-r--r--engines/cine/pal.cpp2
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)) |