diff --git a/src/BizHawk.Emulation.Common/Base Implementations/Bk2MnemonicLookup.cs b/src/BizHawk.Emulation.Common/Base Implementations/Bk2MnemonicLookup.cs index 7d75dd0b7d..7d0da52978 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/Bk2MnemonicLookup.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/Bk2MnemonicLookup.cs @@ -892,18 +892,18 @@ namespace BizHawk.Emulation.Common ["Previous CDROM"] = '{', ["Next CDROM"] = '}', ["Swap CDROM"] = 'w', - ["F1"] = 'F', - ["F2"] = 'F', - ["F3"] = 'F', - ["F4"] = 'F', - ["F5"] = 'F', - ["F6"] = 'F', - ["F7"] = 'F', - ["F8"] = 'F', - ["F9"] = 'F', - ["F10"] = 'F', - ["F11"] = 'F', - ["F12"] = 'F', + ["F1"] = '1', + ["F2"] = '2', + ["F3"] = '3', + ["F4"] = '4', + ["F5"] = '5', + ["F6"] = '6', + ["F7"] = '7', + ["F8"] = '8', + ["F9"] = '9', + ["F10"] = '0', + ["F11"] = '1', + ["F12"] = '2', ["Escape"] = 'e', ["Tab"] = 't', ["Backspace"] = 'b', @@ -931,19 +931,19 @@ namespace BizHawk.Emulation.Common ["Slash"] = '/', ["ExtraLtGt"] = '>', ["PrintScreen"] = 'p', - ["Pause"] = 'p', + ["Pause"] = 'P', ["Insert"] = 'i', ["Home"] = 'h', ["Pageup"] = 'p', ["Delete"] = 'd', ["End"] = 'e', ["Pagedown"] = 'p', - ["Left"] = 'l', - ["Up"] = 'u', - ["Down"] = 'd', - ["Right"] = 'r', - ["Keypad1"] = '1', - ["Keypad2"] = '2', + ["Left"] = '<', + ["Up"] = '^', + ["Down"] = 'v', + ["Right"] = '>', + ["KeyPad1"] = '1', + ["KeyPad2"] = '2', ["KeyPad3"] = '3', ["KeyPad4"] = '4', ["KeyPad5"] = '5', @@ -1031,6 +1031,13 @@ namespace BizHawk.Emulation.Common ["Use Artifact"] = "U", ["Weapon Select"] = "W", }, + [VSystemID.Raw.DOS] = new() + { + ["Mouse Position X"] = "mpX", + ["Mouse Position Y"] = "mpY", + ["Mouse Speed X"] = "msX", + ["Mouse Speed Y"] = "msY", + } }; static Bk2MnemonicLookup()