Skip to content

Commit

Permalink
Merge pull request scummvm#18 from diablodiab/master
Browse files Browse the repository at this point in the history
Fix handling of keyboard meta keys
  • Loading branch information
inactive123 committed Jan 11, 2016
2 parents 91ad578 + 7a96f6e commit 2722d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/platform/libretro/os.cpp
Expand Up @@ -991,7 +991,7 @@ class OSystem_RETRO : public EventsBaseBackend, public PaletteManager {
ev.type = down ? Common::EVENT_KEYDOWN : Common::EVENT_KEYUP;
ev.kbd.keycode = (Common::KeyCode)keycode;
ev.kbd.flags = _keyflags;
ev.kbd.ascii = character & 0x7F;
ev.kbd.ascii = character;
_events.push_back(ev);
}

Expand Down

0 comments on commit 2722d22

Please sign in to comment.