[Scummvm-git-logs] scummvm master -> e313abbcf71676fdd13667f046bfa0b6d1affa84

whiterandrek whiterandrek at gmail.com
Mon Oct 5 21:40:11 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:
e313abbcf7 PETKA: remove handling RIGHT and LEFT keycodes


Commit: e313abbcf71676fdd13667f046bfa0b6d1affa84
    https://github.com/scummvm/scummvm/commit/e313abbcf71676fdd13667f046bfa0b6d1affa84
Author: Andrei Prykhodko (whiterandrek at gmail.com)
Date: 2020-10-06T00:31:18+03:00

Commit Message:
PETKA: remove handling RIGHT and LEFT keycodes

Changed paths:
    engines/petka/q_system.cpp


diff --git a/engines/petka/q_system.cpp b/engines/petka/q_system.cpp
index dfad2d7010..a537b6adf3 100644
--- a/engines/petka/q_system.cpp
+++ b/engines/petka/q_system.cpp
@@ -424,16 +424,6 @@ void QSystem::onEvent(const Common::Event &event) {
 				_mainInterface->_dialog.fixCursor(); // Buggy in original
 			}
 			break;
-#if 1
-		case Common::KEYCODE_RIGHT:
-			_xOffset += 6;
-			_vm.videoSystem()->makeAllDirty();
-			break;
-		case Common::KEYCODE_LEFT:
-			_xOffset -= 6;
-			_vm.videoSystem()->makeAllDirty();
-			break;
-#endif
 		default:
 			break;
 		}




More information about the Scummvm-git-logs mailing list