mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-25 19:25:20 +00:00
AVALANCHE: Repair Avalot::handleKeyDown().
This commit is contained in:
parent
541f5f9c3b
commit
0703085d20
@ -173,8 +173,7 @@ void Avalot::handleKeyDown(const Common::Event &event) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (((32 <= event.kbd.ascii) && (event.kbd.ascii <= 46)) || ((48 <= event.kbd.ascii) && (event.kbd.ascii <= 223))
|
||||
|| ((225 <= event.kbd.ascii) && (event.kbd.ascii <= 255))) {
|
||||
if ((32 <= event.kbd.ascii) && (event.kbd.ascii <= 128) && (event.kbd.ascii != 47)) {
|
||||
byte inChar = event.kbd.ascii;
|
||||
if (_vm->_dropdown->ddm_o.menunow) {
|
||||
_vm->_dropdown->parsekey(inChar, _vm->_enhanced->extd);
|
||||
|
Loading…
Reference in New Issue
Block a user