diff options
author | Johannes Schickel | 2009-02-15 21:20:21 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-02-15 21:20:21 +0000 |
commit | 5417f6bacb73d5996b26229513c2ce01db27bf6a (patch) | |
tree | ec7298416ce8f3ca657b1637352763178752852c /engines/agos | |
parent | e29d90be3e2213313c2884d80656198d8fed65ef (diff) | |
download | scummvm-rg350-5417f6bacb73d5996b26229513c2ce01db27bf6a.tar.gz scummvm-rg350-5417f6bacb73d5996b26229513c2ce01db27bf6a.tar.bz2 scummvm-rg350-5417f6bacb73d5996b26229513c2ce01db27bf6a.zip |
- Replace OSystem::clearScreen with OSystem::fillScreen as discussed on -devel.
- Update BaseBackend and DC port to properly implement OSystem::fillScreen (now only PalmOS has to be updated).
- Update all client code which relied on OSystem::clearScreen so far.
svn-id: r38304
Diffstat (limited to 'engines/agos')
-rw-r--r-- | engines/agos/draw.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/draw.cpp b/engines/agos/draw.cpp index 532bed5467..120dec8e7a 100644 --- a/engines/agos/draw.cpp +++ b/engines/agos/draw.cpp @@ -710,7 +710,7 @@ void AGOSEngine::scrollScreen() { } void AGOSEngine::clearSurfaces() { - _system->clearScreen(); + _system->fillScreen(0); if (_backBuf) { memset(_backBuf, 0, _screenHeight * _screenWidth); |