From 49d90127b9bfbbcc4a079072dda17db1eff4ba89 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 15 Feb 2009 23:01:27 +0000 Subject: Removed OSystem_Dreamcast::fillScreen implementation after discussing it with Marcus. svn-id: r38327 --- backends/platform/dc/dc.h | 3 --- backends/platform/dc/display.cpp | 6 ------ 2 files changed, 9 deletions(-) (limited to 'backends/platform/dc') diff --git a/backends/platform/dc/dc.h b/backends/platform/dc/dc.h index 0b9b9112af..4893b5a37c 100644 --- a/backends/platform/dc/dc.h +++ b/backends/platform/dc/dc.h @@ -88,9 +88,6 @@ class OSystem_Dreamcast : public BaseBackend, public FilesystemFactory { virtual Graphics::Surface *lockScreen(); virtual void unlockScreen(); - // Fill the screen with a given color - void fillScreen(uint32 col); - // Update the dirty areas of the screen void updateScreen(); diff --git a/backends/platform/dc/display.cpp b/backends/platform/dc/display.cpp index aa51123682..d9c56c70ee 100644 --- a/backends/platform/dc/display.cpp +++ b/backends/platform/dc/display.cpp @@ -626,12 +626,6 @@ void OSystem_Dreamcast::unlockScreen() _screen_dirty = true; } -void OSystem_Dreamcast::fillScreen(uint32 col) -{ - memset(screen, col, SCREEN_W*SCREEN_H); - _screen_dirty = true; -} - int16 OSystem_Dreamcast::getOverlayHeight() { return OVL_H; -- cgit v1.2.3