[Scummvm-git-logs] scummvm master -> e66930179a65fc71e652551c67d5f8a456f58105
dreammaster
paulfgilbert at gmail.com
Sun Jan 20 01:07:01 CET 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
e66930179a GLK: FROTZ: Wrap text around pictures added in text window
Commit: e66930179a65fc71e652551c67d5f8a456f58105
https://github.com/scummvm/scummvm/commit/e66930179a65fc71e652551c67d5f8a456f58105
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-01-19T16:06:51-08:00
Commit Message:
GLK: FROTZ: Wrap text around pictures added in text window
Changed paths:
engines/glk/frotz/glk_interface.cpp
diff --git a/engines/glk/frotz/glk_interface.cpp b/engines/glk/frotz/glk_interface.cpp
index 14047f1..740a43f 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,
More information about the Scummvm-git-logs
mailing list