aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/graphics.cpp
diff options
context:
space:
mode:
authoruruk2013-09-21 14:16:32 +0200
committeruruk2013-09-21 14:16:32 +0200
commit2dcdca571192faebdc1799461fe907fad7087ef3 (patch)
tree4e7c6a9f311bb147feccc2eac690ef4c760a2181 /engines/avalanche/graphics.cpp
parent2df1aa6287b889baa6e545c0448a1d6f92dd7155 (diff)
downloadscummvm-rg350-2dcdca571192faebdc1799461fe907fad7087ef3.tar.gz
scummvm-rg350-2dcdca571192faebdc1799461fe907fad7087ef3.tar.bz2
scummvm-rg350-2dcdca571192faebdc1799461fe907fad7087ef3.zip
AVALANCHE: Silence GCC warnings and repair Scrolls::scrollModeNormal().
Diffstat (limited to 'engines/avalanche/graphics.cpp')
-rw-r--r--engines/avalanche/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/avalanche/graphics.cpp b/engines/avalanche/graphics.cpp
index 97624cf1de..aa363bb0a2 100644
--- a/engines/avalanche/graphics.cpp
+++ b/engines/avalanche/graphics.cpp
@@ -290,7 +290,7 @@ void Graphics::drawSprite(const SpriteInfo &sprite, byte picnum, int16 x, int16
}
}
-void Graphics::drawPicture(::Graphics::Surface &target, const ::Graphics::Surface &picture, uint16 destX, uint16 destY) {
+void Graphics::drawPicture(::Graphics::Surface &target, ::Graphics::Surface &picture, uint16 destX, uint16 destY) {
// Copy the picture to the given place on the screen.
for (uint16 y = 0; y < picture.h; y++) {
for (uint16 x = 0; x < picture.w; x++)