mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 07:23:05 +00:00
SCI: get color white instead of hardcoded 255 inside openPort(), fixes not working inverting of button controls on qfg1ega character stats screen
svn-id: r48755
This commit is contained in:
parent
f3be0bc181
commit
2242ee33ac
@ -410,7 +410,7 @@ void GfxPorts::openPort(Port *port) {
|
||||
port->left = 0;
|
||||
port->greyedOutput = false;
|
||||
port->penClr = 0;
|
||||
port->backClr = 255;
|
||||
port->backClr = _screen->getColorWhite();
|
||||
port->penMode = 0;
|
||||
port->rect = _bounds;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user