[Scummvm-git-logs] scummvm master -> b32adea527dad3acd6e36b63abcb82bc8670dae6
dreammaster
paulfgilbert at gmail.com
Sat Sep 12 22:48:04 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:
b32adea527 XEEN: Fix U/D keys in Quests dialog
Commit: b32adea527dad3acd6e36b63abcb82bc8670dae6
https://github.com/scummvm/scummvm/commit/b32adea527dad3acd6e36b63abcb82bc8670dae6
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2020-09-12T15:45:27-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 601741f0e8..b0c19d2880 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -125,6 +125,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