aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/surfacesdl/surfacesdl-graphics.cpp
diff options
context:
space:
mode:
authorCameron Cawley2019-11-09 14:52:05 +0000
committerFilippos Karapetis2019-11-10 01:25:46 +0200
commitd1fa1154fe5758fe48928062ff9b43d1bcfc7770 (patch)
treeab6e301f5a000c0fdeea52a83c0a92b59b55d68a /backends/graphics/surfacesdl/surfacesdl-graphics.cpp
parenta00ccb215fcf5657aea797877285c1e7e6cac5f0 (diff)
downloadscummvm-rg350-d1fa1154fe5758fe48928062ff9b43d1bcfc7770.tar.gz
scummvm-rg350-d1fa1154fe5758fe48928062ff9b43d1bcfc7770.tar.bz2
scummvm-rg350-d1fa1154fe5758fe48928062ff9b43d1bcfc7770.zip
BACKENDS: Fix using fillScreen in non-paletted screen modes
Diffstat (limited to 'backends/graphics/surfacesdl/surfacesdl-graphics.cpp')
-rw-r--r--backends/graphics/surfacesdl/surfacesdl-graphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/graphics/surfacesdl/surfacesdl-graphics.cpp b/backends/graphics/surfacesdl/surfacesdl-graphics.cpp
index 3b2e3eaf6f..7cddd4443f 100644
--- a/backends/graphics/surfacesdl/surfacesdl-graphics.cpp
+++ b/backends/graphics/surfacesdl/surfacesdl-graphics.cpp
@@ -1610,8 +1610,8 @@ void SurfaceSdlGraphicsManager::unlockScreen() {
void SurfaceSdlGraphicsManager::fillScreen(uint32 col) {
Graphics::Surface *screen = lockScreen();
- if (screen && screen->getPixels())
- memset(screen->getPixels(), col, screen->h * screen->pitch);
+ if (screen)
+ screen->fillRect(Common::Rect(screen->w, screen->h), col);
unlockScreen();
}