dos: fix some mnemonics

This commit is contained in:
feos 2025-05-12 19:37:08 +03:00
parent e7e31d5792
commit 243bf80777
1 changed files with 26 additions and 19 deletions

View File

@ -892,18 +892,18 @@ namespace BizHawk.Emulation.Common
["Previous CDROM"] = '{', ["Previous CDROM"] = '{',
["Next CDROM"] = '}', ["Next CDROM"] = '}',
["Swap CDROM"] = 'w', ["Swap CDROM"] = 'w',
["F1"] = 'F', ["F1"] = '1',
["F2"] = 'F', ["F2"] = '2',
["F3"] = 'F', ["F3"] = '3',
["F4"] = 'F', ["F4"] = '4',
["F5"] = 'F', ["F5"] = '5',
["F6"] = 'F', ["F6"] = '6',
["F7"] = 'F', ["F7"] = '7',
["F8"] = 'F', ["F8"] = '8',
["F9"] = 'F', ["F9"] = '9',
["F10"] = 'F', ["F10"] = '0',
["F11"] = 'F', ["F11"] = '1',
["F12"] = 'F', ["F12"] = '2',
["Escape"] = 'e', ["Escape"] = 'e',
["Tab"] = 't', ["Tab"] = 't',
["Backspace"] = 'b', ["Backspace"] = 'b',
@ -931,19 +931,19 @@ namespace BizHawk.Emulation.Common
["Slash"] = '/', ["Slash"] = '/',
["ExtraLtGt"] = '>', ["ExtraLtGt"] = '>',
["PrintScreen"] = 'p', ["PrintScreen"] = 'p',
["Pause"] = 'p', ["Pause"] = 'P',
["Insert"] = 'i', ["Insert"] = 'i',
["Home"] = 'h', ["Home"] = 'h',
["Pageup"] = 'p', ["Pageup"] = 'p',
["Delete"] = 'd', ["Delete"] = 'd',
["End"] = 'e', ["End"] = 'e',
["Pagedown"] = 'p', ["Pagedown"] = 'p',
["Left"] = 'l', ["Left"] = '<',
["Up"] = 'u', ["Up"] = '^',
["Down"] = 'd', ["Down"] = 'v',
["Right"] = 'r', ["Right"] = '>',
["Keypad1"] = '1', ["KeyPad1"] = '1',
["Keypad2"] = '2', ["KeyPad2"] = '2',
["KeyPad3"] = '3', ["KeyPad3"] = '3',
["KeyPad4"] = '4', ["KeyPad4"] = '4',
["KeyPad5"] = '5', ["KeyPad5"] = '5',
@ -1031,6 +1031,13 @@ namespace BizHawk.Emulation.Common
["Use Artifact"] = "U", ["Use Artifact"] = "U",
["Weapon Select"] = "W", ["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() static Bk2MnemonicLookup()