[Scummvm-git-logs] scummvm master -> 122eab3e4aa13fd661aab7af1676bc23f50c532f
AndywinXp
noreply at scummvm.org
Sat Feb 11 15:46:24 UTC 2023
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:
122eab3e4a SCUMM: Remove leftover debug print
Commit: 122eab3e4aa13fd661aab7af1676bc23f50c532f
https://github.com/scummvm/scummvm/commit/122eab3e4aa13fd661aab7af1676bc23f50c532f
Author: AndywinXp (andywinxp at gmail.com)
Date: 2023-02-11T16:46:15+01:00
Commit Message:
SCUMM: Remove leftover debug print
Changed paths:
engines/scumm/input.cpp
diff --git a/engines/scumm/input.cpp b/engines/scumm/input.cpp
index aa3f5398251..79cd32ee7e8 100644
--- a/engines/scumm/input.cpp
+++ b/engines/scumm/input.cpp
@@ -1358,7 +1358,7 @@ void ScummEngine::processKeyboard(Common::KeyState lastKeyHit) {
// Map arrow keys to number keys in the SEGA version of MI to support
// scrolling to conversation choices. See bug report #2013 for details.
_mouseAndKeyboardStat = lastKeyHit.keycode - Common::KEYCODE_UP + 54;
- debug(5, "dir %d", _mouseAndKeyboardStat);
+
// Left and right are swapped
if (lastKeyHit.keycode == Common::KEYCODE_LEFT || lastKeyHit.keycode == Common::KEYCODE_RIGHT) {
_mouseAndKeyboardStat += lastKeyHit.keycode == Common::KEYCODE_LEFT ? -1 : 1;
More information about the Scummvm-git-logs
mailing list