mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-02 17:03:13 +00:00
SDL: Allow for the meta key flag to be used
This commit is contained in:
parent
f58d834cda
commit
ec0b4f7b96
@ -191,6 +191,8 @@ void SdlEventSource::SDLModToOSystemKeyFlags(SDLMod mod, Common::Event &event) {
|
||||
#endif
|
||||
if (mod & KMOD_CTRL)
|
||||
event.kbd.flags |= Common::KBD_CTRL;
|
||||
if (mod & KMOD_META)
|
||||
event.kbd.flags |= Common::KBD_META;
|
||||
|
||||
// Sticky flags
|
||||
if (mod & KMOD_NUM)
|
||||
|
Loading…
x
Reference in New Issue
Block a user