PETKA: remove handling RIGHT and LEFT keycodes

This commit is contained in:
Andrei Prykhodko 2020-10-06 00:31:18 +03:00
parent 0639c0708e
commit e313abbcf7

View File

@ -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;
}