diff options
author | Paul Gilbert | 2019-01-19 16:06:51 -0800 |
---|---|---|
committer | Paul Gilbert | 2019-01-19 16:06:51 -0800 |
commit | e66930179a65fc71e652551c67d5f8a456f58105 (patch) | |
tree | 0a8a44357f61cdb75d62fcee622f7f6069d22ace /engines/glk/frotz | |
parent | 5e2fb6fb2672137f9dbcf6f17b8de9c312b236e6 (diff) | |
download | scummvm-rg350-e66930179a65fc71e652551c67d5f8a456f58105.tar.gz scummvm-rg350-e66930179a65fc71e652551c67d5f8a456f58105.tar.bz2 scummvm-rg350-e66930179a65fc71e652551c67d5f8a456f58105.zip |
GLK: FROTZ: Wrap text around pictures added in text window
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, |