From 5417f6bacb73d5996b26229513c2ce01db27bf6a Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 15 Feb 2009 21:20:21 +0000 Subject: - 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 --- engines/drascula/rooms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/drascula') 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(); } -- cgit v1.2.3