[Scummvm-git-logs] scummvm branch-2-2 -> 3bb579d7f5ac4a31bda6f0b1432f36cd8ea3ad86
dreammaster
paulfgilbert at gmail.com
Sat Sep 12 22:48:38 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:
3bb579d7f5 XEEN: Fix U/D keys in Quests dialog
Commit: 3bb579d7f5ac4a31bda6f0b1432f36cd8ea3ad86
https://github.com/scummvm/scummvm/commit/3bb579d7f5ac4a31bda6f0b1432f36cd8ea3ad86
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2020-09-12T15:48:25-07:00
Commit Message:
XEEN: Fix U/D keys in Quests dialog
Changed paths:
NEWS.md
engines/xeen/dialogs/dialogs_quests.cpp
diff --git a/NEWS.md b/NEWS.md
index adcbba1f81..9c7f4db520 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -117,6 +117,7 @@ For a more comprehensive changelog of the latest experimental code, see:
- Fix crash loading some savegames directly from the launcher.
- Fix curing the well in Nightshadow.
- Fix loading of wall items from savegames.
+ - Fix U/D keys not working on Quests dialog
ZVision:
- Fixed regression in the safe puzzle in Zork Nemesis: The Forbidden Lands.
diff --git a/engines/xeen/dialogs/dialogs_quests.cpp b/engines/xeen/dialogs/dialogs_quests.cpp
index 0f2601a36e..08fd793391 100644
--- a/engines/xeen/dialogs/dialogs_quests.cpp
+++ b/engines/xeen/dialogs/dialogs_quests.cpp
@@ -249,10 +249,12 @@ void Quests::execute() {
break;
case Common::KEYCODE_UP:
case Common::KEYCODE_KP8:
+ case Common::KEYCODE_u:
topRow = MAX(topRow - 1, 0);
break;
case Common::KEYCODE_DOWN:
case Common::KEYCODE_KP2:
+ case Common::KEYCODE_d:
topRow = CLIP(topRow + 1, 0, MAX(count - 1, 0));
break;
default:
More information about the Scummvm-git-logs
mailing list