SWORD2: Adapt to setPalette/grabPalette RGBA->RGB change.

Thanks to eriktorbjorn for helping me with this.
This commit is contained in:
Johannes Schickel 2011-02-15 22:52:15 +01:00
parent 3b9da7f03b
commit 74e4b5a6cd
10 changed files with 79 additions and 70 deletions

View file

@ -319,7 +319,7 @@ bool Debugger::Cmd_Starts(int argc, const char **argv) {
}
bool Debugger::Cmd_Start(int argc, const char **argv) {
uint8 pal[4] = { 255, 255, 255, 0 };
uint8 pal[3] = { 255, 255, 255 };
if (argc != 2) {
DebugPrintf("Usage: %s number\n", argv[0]);