aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/palette.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/palette.h')
-rw-r--r--engines/mads/palette.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mads/palette.h b/engines/mads/palette.h
index 728fd0969a..b306c8acb0 100644
--- a/engines/mads/palette.h
+++ b/engines/mads/palette.h
@@ -46,12 +46,12 @@ enum {
};
struct RGB4 {
- byte r;
+ byte _colorCount;
byte g;
- byte b;
+ byte _firstColorIndex;
byte u;
- RGB4() { r = g = b = u = 0; }
+ RGB4() { _colorCount = g = _firstColorIndex = u = 0; }
};
struct RGB6 {