aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/window_graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/window_graphics.cpp')
-rw-r--r--engines/glk/window_graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/window_graphics.cpp b/engines/glk/window_graphics.cpp
index 063a590dc6..049d31425b 100644
--- a/engines/glk/window_graphics.cpp
+++ b/engines/glk/window_graphics.cpp
@@ -230,7 +230,7 @@ void GraphicsWindow::drawPicture(Picture *src, int x0, int y0, int width, int h
w = sx1 - sx0;
h = sy1 - sy0;
- _surface->transBlitFrom(*src, Rect(sx0, sy0, sx0 + w, sy0 + h), Point(0, 0), src->getTransparentColor());
+ _surface->transBlitFrom(*src, Rect(sx0, sy0, sx0 + w, sy0 + h), Point(x0, y0), src->getTransparentColor());
}
void GraphicsWindow::getSize(uint *width, uint *height) const {