diff options
| author | Gregory Montoir | 2006-11-12 03:02:20 +0000 |
|---|---|---|
| committer | Gregory Montoir | 2006-11-12 03:02:20 +0000 |
| commit | 196c8a37718052c3b465af53f0b3324d0ee77533 (patch) | |
| tree | 61f0fa2d4f3c1381db4e81a9a4fc9b3e5bba2193 /engines/touche/ui.cpp | |
| parent | e61526555c7e1a6cca20d8824b0ae5c0fb12f184 (diff) | |
| download | scummvm-rg350-196c8a37718052c3b465af53f0b3324d0ee77533.tar.gz scummvm-rg350-196c8a37718052c3b465af53f0b3324d0ee77533.tar.bz2 scummvm-rg350-196c8a37718052c3b465af53f0b3324d0ee77533.zip | |
cleanup
svn-id: r24683
Diffstat (limited to 'engines/touche/ui.cpp')
| -rw-r--r-- | engines/touche/ui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/touche/ui.cpp b/engines/touche/ui.cpp index 7c9c28b9cf..d2c2f1c3eb 100644 --- a/engines/touche/ui.cpp +++ b/engines/touche/ui.cpp @@ -406,7 +406,7 @@ void ToucheEngine::handleOptions(int forceDisplay) { break; } } - updateScreenArea(_offscreenBuffer, 640, 90, 102, 90, 102, 460, 196); + updateScreenArea(90, 102, 460, 196); _system->updateScreen(); _system->delayMillis(50); } @@ -513,14 +513,14 @@ void ToucheEngine::printStatusString(const char *str) { Graphics::fillRect(_offscreenBuffer, 640, 0, 0, 640, 16, 0xD7); Graphics::drawRect(_offscreenBuffer, 640, 0, 0, 640, 16, 0xD6, 0xD8); Graphics::drawString16(_offscreenBuffer, 640, 0xFF, 0, 0, str); - updateScreenArea(_offscreenBuffer, 640, 0, 0, 0, 0, 640, 16); + updateScreenArea(0, 0, 640, 16); } void ToucheEngine::clearStatusString() { Graphics::copyRect(_offscreenBuffer, 640, 0, 0, _backdropBuffer, _currentBitmapWidth, _flagsTable[614], _flagsTable[615], 640, 16); - updateScreenArea(_offscreenBuffer, 640, 0, 0, 0, 0, 640, 16); + updateScreenArea(0, 0, 640, 16); } int ToucheEngine::displayQuitDialog() { |
