diff options
-rw-r--r-- | engines/sherlock/screen.cpp | 2 | ||||
-rw-r--r-- | engines/sherlock/surface.cpp | 2 | ||||
-rw-r--r-- | engines/sherlock/surface.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/sherlock/screen.cpp b/engines/sherlock/screen.cpp index 85d47c84dc..33e12530ed 100644 --- a/engines/sherlock/screen.cpp +++ b/engines/sherlock/screen.cpp @@ -319,7 +319,7 @@ void Screen::vgaBar(const Common::Rect &r, int color) { } void Screen::setDisplayBounds(const Common::Rect &r) { - _sceneSurface.setPixels((byte *)_backBuffer1.getBasePtr(r.left, r.top), + _sceneSurface.setPixelsData((byte *)_backBuffer1.getBasePtr(r.left, r.top), r.width(), r.height(), _backBuffer1.format); _backBuffer = &_sceneSurface; diff --git a/engines/sherlock/surface.cpp b/engines/sherlock/surface.cpp index 46304e1b2f..b9df33a309 100644 --- a/engines/sherlock/surface.cpp +++ b/engines/sherlock/surface.cpp @@ -33,7 +33,7 @@ Surface::Surface(int width, int height) : Graphics::ManagedSurface(width, height create(width, height); } -void Surface::setPixels(byte *pixelsPtr, int sizeX, int sizeY, const Graphics::PixelFormat &pixFormat) { +void Surface::setPixelsData(byte *pixelsPtr, int sizeX, int sizeY, const Graphics::PixelFormat &pixFormat) { Graphics::ManagedSurface::setPixels(pixelsPtr); this->format = pixFormat; this->w = sizeX; diff --git a/engines/sherlock/surface.h b/engines/sherlock/surface.h index 648b121852..856d0edc9b 100644 --- a/engines/sherlock/surface.h +++ b/engines/sherlock/surface.h @@ -54,7 +54,7 @@ public: /** * Set the surface details */ - void setPixels(byte *pixelsPtr, int sizeX, int sizeY, const Graphics::PixelFormat &pixFormat); + void setPixelsData(byte *pixelsPtr, int sizeX, int sizeY, const Graphics::PixelFormat &pixFormat); /** * Draws a surface on this surface |