diff options
author | Max Horn | 2015-07-19 17:10:13 +0200 |
---|---|---|
committer | Max Horn | 2015-07-19 17:13:38 +0200 |
commit | fad3b425b93f1bd4480847542faf2e97a389c5a5 (patch) | |
tree | 34d634468fdb36b46e9cedfee18e91291056ff85 /engines | |
parent | 856475067a0f78449db213afb79390e8fb7c095d (diff) | |
download | scummvm-rg350-fad3b425b93f1bd4480847542faf2e97a389c5a5.tar.gz scummvm-rg350-fad3b425b93f1bd4480847542faf2e97a389c5a5.tar.bz2 scummvm-rg350-fad3b425b93f1bd4480847542faf2e97a389c5a5.zip |
AGI: Disable unused palettes for compilation
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agi/graphics.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/agi/graphics.cpp b/engines/agi/graphics.cpp index 32d0fdc06a..c5cede71ef 100644 --- a/engines/agi/graphics.cpp +++ b/engines/agi/graphics.cpp @@ -72,6 +72,7 @@ static const uint8 egaPalette[16 * 3] = { * from Donald Duck's Playground (1986) to Manhunter II (1989). * 16 RGB colors. 3 bits per color component. */ +#if 0 static const uint8 atariStAgiPalette[16 * 3] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, @@ -90,6 +91,7 @@ static const uint8 atariStAgiPalette[16 * 3] = { 0x7, 0x7, 0x4, 0x7, 0x7, 0x7 }; +#endif /** * Second generation Apple IIGS AGI palette. @@ -109,6 +111,8 @@ static const uint8 atariStAgiPalette[16 * 3] = { * 3.001 (Black Cauldron v1.0O 1989-02-24 (CE)) * 3.003 (Gold Rush! v1.0M 1989-02-28 (CE)) */ +#if 0 +// FIXME: Identical to amigaAgiPaletteV2 static const uint8 appleIIgsAgiPaletteV2[16 * 3] = { 0x0, 0x0, 0x0, 0x0, 0x0, 0xF, @@ -127,6 +131,7 @@ static const uint8 appleIIgsAgiPaletteV2[16 * 3] = { 0xE, 0xE, 0x0, 0xF, 0xF, 0xF }; +#endif /** * First generation Amiga & Apple IIGS AGI palette. |