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/drascula | |
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/drascula')
-rw-r--r-- | engines/drascula/rooms.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/drascula/rooms.cpp b/engines/drascula/rooms.cpp index 33ee526785..12ec3594b1 100644 --- a/engines/drascula/rooms.cpp +++ b/engines/drascula/rooms.cpp @@ -1867,7 +1867,7 @@ void DrasculaEngine::enterRoom(int roomIndex) { void DrasculaEngine::clearRoom() { memset(VGA, 0, 64000); - _system->clearScreen(); + _system->fillScreen(0); _system->updateScreen(); } |