mirror of https://github.com/stella-emu/stella.git
fix MacOS modifier naming
This commit is contained in:
parent
0724e69c4c
commit
f7c529d179
|
@ -92,9 +92,9 @@ bool KeyMap::check(const int mode, const int key, const int mod) const
|
||||||
string KeyMap::getDesc(const Mapping& mapping) const
|
string KeyMap::getDesc(const Mapping& mapping) const
|
||||||
{
|
{
|
||||||
ostringstream buf;
|
ostringstream buf;
|
||||||
#ifdef BSPF_MACOS
|
#ifdef BSPF_MACOS || defined(MACOS_KEYS)
|
||||||
string control = "Cmd";
|
string control = "Ctrl";
|
||||||
string alt = "Ctrl";
|
string alt = "Cmd";
|
||||||
int ALT = KBDM_GUI;
|
int ALT = KBDM_GUI;
|
||||||
int LALT = KBDM_LGUI;
|
int LALT = KBDM_LGUI;
|
||||||
int RALT = KBDM_RGUI;
|
int RALT = KBDM_RGUI;
|
||||||
|
|
Loading…
Reference in New Issue