aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)) |