i can reproduce this, last revision without this problem on master r54801d93c4bf9c414cb6382d25d9533e31d7ae0b
issue starts on master with rd15740daf12454e96c8681fe23ae48384bb723e8
quick workaround that fixed it here, go to the hotkey mapper and click the change disc button and press the space bar (which clears it).
reason for the error: wxwidgets is returning either a ascii7 code, or an element of wxKeyCode enum. for these special keys it gives it the keycode of 0, which is the default when a hotkey has not been set. not sure why it didn't happen with wx 2.8 though
clearing the setting by pressing space assigns -1 as the hotkey, the fix would probably be to simply default to -1 instead of 0 for hotkeys. anyone who uses an old dolphin.ini file would experience the issue though.
and I don't know how common these extra keys are, they seem to be a lot more common than they used to be
issue starts on master with rd15740daf12454e96c8681fe23ae48384bb723e8
quick workaround that fixed it here, go to the hotkey mapper and click the change disc button and press the space bar (which clears it).
reason for the error: wxwidgets is returning either a ascii7 code, or an element of wxKeyCode enum. for these special keys it gives it the keycode of 0, which is the default when a hotkey has not been set. not sure why it didn't happen with wx 2.8 though
clearing the setting by pressing space assigns -1 as the hotkey, the fix would probably be to simply default to -1 instead of 0 for hotkeys. anyone who uses an old dolphin.ini file would experience the issue though.
and I don't know how common these extra keys are, they seem to be a lot more common than they used to be
