SWORD2: Adapt to setPalette/grabPalette RGBA->RGB change.
Thanks to eriktorbjorn for helping me with this.
This commit is contained in:
parent
3b9da7f03b
commit
74e4b5a6cd
10 changed files with 79 additions and 70 deletions
|
@ -1410,8 +1410,8 @@ void Mouse::addHuman() {
|
|||
// info
|
||||
|
||||
if (_vm->_debugger->_testingSnR) {
|
||||
uint8 black[4] = { 0, 0, 0, 0 };
|
||||
uint8 white[4] = { 255, 255, 255, 0 };
|
||||
uint8 black[3] = { 0, 0, 0 };
|
||||
uint8 white[3] = { 255, 255, 255 };
|
||||
|
||||
// Testing logic scripts by simulating instant Save & Restore
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue