diff options
author | Max Horn | 2008-07-25 09:05:04 +0000 |
---|---|---|
committer | Max Horn | 2008-07-25 09:05:04 +0000 |
commit | 2fc0c3e85933ccbee0b3e0373b45c49d932f5159 (patch) | |
tree | 5d8eea111746c143bd130a154c254c933fda5e7a /engines/tinsel | |
parent | a27f0faeef4e09b9625d8183207323dc0d780b17 (diff) | |
download | scummvm-rg350-2fc0c3e85933ccbee0b3e0373b45c49d932f5159.tar.gz scummvm-rg350-2fc0c3e85933ccbee0b3e0373b45c49d932f5159.tar.bz2 scummvm-rg350-2fc0c3e85933ccbee0b3e0373b45c49d932f5159.zip |
TINSEL: Updating the palette should only require a call to OSystem::updateScreen and not a blit
svn-id: r33274
Diffstat (limited to 'engines/tinsel')
-rw-r--r-- | engines/tinsel/palette.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/palette.cpp b/engines/tinsel/palette.cpp index 130e58ec5f..3bc2b514b5 100644 --- a/engines/tinsel/palette.cpp +++ b/engines/tinsel/palette.cpp @@ -133,7 +133,7 @@ void PalettesToVideoDAC(void) { pPalQ->posInDAC &= ~PALETTE_MOVED; if (needUpdate) - _vm->screen().update(); + g_system->updateScreen(); } /** |