[Scummvm-git-logs] scummvm master -> 8e8f94b5bbd860c87eddbf6e566eed6e2e596849
dreammaster
paulfgilbert at gmail.com
Sun Jul 12 01:39:47 UTC 2020
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:
8e8f94b5bb XEEN: Prevent reduced font display in quick ref
Commit: 8e8f94b5bbd860c87eddbf6e566eed6e2e596849
https://github.com/scummvm/scummvm/commit/8e8f94b5bbd860c87eddbf6e566eed6e2e596849
Author: Jonathan Phénix (greaterd at gmail.com)
Date: 2020-07-11T18:39:43-07:00
Commit Message:
XEEN: Prevent reduced font display in quick ref
This can currently happen if you go in any character screen and click
on "Resistances" and then consult "Quick Ref".
Changed paths:
engines/xeen/dialogs/dialogs_quick_ref.cpp
diff --git a/engines/xeen/dialogs/dialogs_quick_ref.cpp b/engines/xeen/dialogs/dialogs_quick_ref.cpp
index 0c8a63b43a..7f453d9df8 100644
--- a/engines/xeen/dialogs/dialogs_quick_ref.cpp
+++ b/engines/xeen/dialogs/dialogs_quick_ref.cpp
@@ -72,6 +72,9 @@ void QuickReferenceDialog::execute() {
bool windowOpen = w._enabled;
if (!windowOpen)
w.open();
+
+ // Turn off reduced font mode and then print everything
+ w.writeString("\1");
w.writeString(msg);
w.update();
More information about the Scummvm-git-logs
mailing list