diff options
author | Filippos Karapetis | 2015-07-27 14:52:23 +0300 |
---|---|---|
committer | Filippos Karapetis | 2015-07-27 14:52:23 +0300 |
commit | 37be3cbe83cdb7f4510db298c718c6b5d80ba0fe (patch) | |
tree | bf62592d143f676aef00694dde19a7a750ed62b8 /engines/access | |
parent | 7915b91720c6c9c1ac2c2c186db9418f6a6cb0a2 (diff) | |
download | scummvm-rg350-37be3cbe83cdb7f4510db298c718c6b5d80ba0fe.tar.gz scummvm-rg350-37be3cbe83cdb7f4510db298c718c6b5d80ba0fe.tar.bz2 scummvm-rg350-37be3cbe83cdb7f4510db298c718c6b5d80ba0fe.zip |
ACCESS: Rename ICON_DATA -> ICON_PALETTE
Diffstat (limited to 'engines/access')
-rw-r--r-- | engines/access/martian/martian_resources.cpp | 2 | ||||
-rw-r--r-- | engines/access/martian/martian_resources.h | 2 | ||||
-rw-r--r-- | engines/access/screen.cpp | 2 |
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]); } } } |