From 5b238e17c1f6ac340ae22928db607aea662967de Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 17 Jul 2004 07:34:34 +0000 Subject: Don't remap arrow keys in later games. Allow arrows keys to work in lander game of Dig again. svn-id: r14232 --- scumm/scumm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index f49e14581a..8c1bf8efe0 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -1774,7 +1774,7 @@ void ScummEngine::parseEvents() { 327, 328, 329 }; _keyPressed = numpad[event.kbd.ascii - '0']; - } else if (event.kbd.ascii < 273 || event.kbd.ascii > 276 || _gameId == GID_FT) { + } else if (event.kbd.ascii < 273 || event.kbd.ascii > 276 || _version >= 7) { // don't let game have arrow keys as we currently steal them // for keyboard cursor control // this fixes bug with up arrow (273) corresponding to -- cgit v1.2.3