diff options
Diffstat (limited to 'engines/glk/frotz')
-rw-r--r-- | engines/glk/frotz/glk_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/frotz/glk_interface.cpp b/engines/glk/frotz/glk_interface.cpp index 14047f1eb5..740a43f847 100644 --- a/engines/glk/frotz/glk_interface.cpp +++ b/engines/glk/frotz/glk_interface.cpp @@ -498,7 +498,7 @@ void GlkInterface::showBeyondZorkTitle() { void GlkInterface::os_draw_picture(int picture, const Common::Point &pos) { if (cwin == 0) { // Picture embedded within the lower text area - glk_image_draw(_wp._lower, picture, 0, 0); + glk_image_draw(_wp._lower, picture, imagealign_MarginLeft, 0); } else { glk_image_draw(_wp._background, picture, (pos.x - 1) * g_conf->_monoInfo._cellW, |