diff options
author | Johannes Schickel | 2013-08-03 02:38:33 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-08-03 04:02:50 +0200 |
commit | f8ffe816d600a83cacc0063f0ef69d18325f1cdf (patch) | |
tree | 878690806c7913c008765b4a20958f415ca4b71d /engines/draci | |
parent | 3fbc497e1c7fddc543aabf5886ccf364a3416efc (diff) | |
download | scummvm-rg350-f8ffe816d600a83cacc0063f0ef69d18325f1cdf.tar.gz scummvm-rg350-f8ffe816d600a83cacc0063f0ef69d18325f1cdf.tar.bz2 scummvm-rg350-f8ffe816d600a83cacc0063f0ef69d18325f1cdf.zip |
DRACI: Take advantage of Surface::getPixels.
Diffstat (limited to 'engines/draci')
-rw-r--r-- | engines/draci/screen.cpp | 4 | ||||
-rw-r--r-- | engines/draci/surface.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/draci/screen.cpp b/engines/draci/screen.cpp index 8c1a0c40f7..e43e367300 100644 --- a/engines/draci/screen.cpp +++ b/engines/draci/screen.cpp @@ -110,7 +110,7 @@ void Screen::copyToScreen() { // If a full update is needed, update the whole screen if (_surface->needsFullUpdate()) { - byte *ptr = (byte *)_surface->getBasePtr(0, 0); + byte *ptr = (byte *)_surface->getPixels(); _vm->_system->copyRectToScreen(ptr, kScreenWidth, 0, 0, kScreenWidth, kScreenHeight); @@ -138,7 +138,7 @@ void Screen::copyToScreen() { * Clears the screen and marks the whole screen dirty. */ void Screen::clearScreen() { - byte *ptr = (byte *)_surface->getBasePtr(0, 0); + byte *ptr = (byte *)_surface->getPixels(); _surface->markDirty(); diff --git a/engines/draci/surface.cpp b/engines/draci/surface.cpp index 8380f8777b..3676c6edac 100644 --- a/engines/draci/surface.cpp +++ b/engines/draci/surface.cpp @@ -80,7 +80,7 @@ void Surface::markClean() { * @brief Fills the surface with the specified color */ void Surface::fill(uint color) { - byte *ptr = (byte *)getBasePtr(0, 0); + byte *ptr = (byte *)getPixels(); memset(ptr, color, w * h); } |