aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/screen.cpp
diff options
context:
space:
mode:
authorjohndoe1232014-03-20 13:24:33 +0100
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commitf47575ca906682bab942d19a36cc33ea7465a4b2 (patch)
tree982764727aab8fde9a46ca15f917685135b6d703 /engines/illusions/screen.cpp
parentc99f40c13d945060f489693d3f533b6ce0b54adb (diff)
downloadscummvm-rg350-f47575ca906682bab942d19a36cc33ea7465a4b2.tar.gz
scummvm-rg350-f47575ca906682bab942d19a36cc33ea7465a4b2.tar.bz2
scummvm-rg350-f47575ca906682bab942d19a36cc33ea7465a4b2.zip
ILLUSIONS: Add more script opcodes and related
Diffstat (limited to 'engines/illusions/screen.cpp')
-rw-r--r--engines/illusions/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/illusions/screen.cpp b/engines/illusions/screen.cpp
index 6cb55ec5c2..1a80a33905 100644
--- a/engines/illusions/screen.cpp
+++ b/engines/illusions/screen.cpp
@@ -87,7 +87,7 @@ void Screen::drawSurface10(int16 destX, int16 destY, Graphics::Surface *surface,
void Screen::drawSurface11(int16 destX, int16 destY, Graphics::Surface *surface, Common::Rect &srcRect) {
// Unscaled, non-transparent
- debug(1, "Screen::drawSurface11() destX: %d; destY: %d; srcRect: (%d, %d, %d, %d)", destX, destY, srcRect.left, srcRect.top, srcRect.right, srcRect.bottom);
+ debug("Screen::drawSurface11() destX: %d; destY: %d; srcRect: (%d, %d, %d, %d)", destX, destY, srcRect.left, srcRect.top, srcRect.right, srcRect.bottom);
const int16 w = srcRect.width();
const int16 h = srcRect.height();
for (int16 yc = 0; yc < h; ++yc) {