aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/access/martian/martian_resources.cpp2
-rw-r--r--engines/access/martian/martian_resources.h2
-rw-r--r--engines/access/screen.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/access/martian/martian_resources.cpp b/engines/access/martian/martian_resources.cpp
index c7f905413a..474ec2f71c 100644
--- a/engines/access/martian/martian_resources.cpp
+++ b/engines/access/martian/martian_resources.cpp
@@ -738,7 +738,7 @@ const byte CREDIT_DATA[] = {
0x0B, 0x00, 0xFF, 0xFF, 0xF4, 0x01, 0xFF, 0xFF, 0xFF, 0xFF
};
-const byte ICON_DATA[] = {
+const byte ICON_PALETTE[] = {
0x3F, 0x3F, 0x00, 0x00, 0x07, 0x16,
0x00, 0x0A, 0x1A, 0x00, 0x0D, 0x1F,
0x00, 0x11, 0x28, 0x00, 0x15, 0x30,
diff --git a/engines/access/martian/martian_resources.h b/engines/access/martian/martian_resources.h
index de195c466e..2eb810ac80 100644
--- a/engines/access/martian/martian_resources.h
+++ b/engines/access/martian/martian_resources.h
@@ -55,7 +55,7 @@ extern const int SIDEOFFU[];
extern const int SIDEOFFD[];
extern const byte CREDIT_DATA[];
-extern const byte ICON_DATA[];
+extern const byte ICON_PALETTE[];
extern const int RMOUSE[10][2];
diff --git a/engines/access/screen.cpp b/engines/access/screen.cpp
index 2d9a07470e..41f6194238 100644
--- a/engines/access/screen.cpp
+++ b/engines/access/screen.cpp
@@ -122,7 +122,7 @@ void Screen::setManPalette() {
void Screen::setIconPalette() {
if (_vm->getGameID() == GType_MartianMemorandum) {
for (int i = 0; i < 0x1B; i++) {
- _rawPalette[741 + i] = VGA_COLOR_TRANS(Martian::ICON_DATA[i]);
+ _rawPalette[741 + i] = VGA_COLOR_TRANS(Martian::ICON_PALETTE[i]);
}
}
}