[ChannelFHawk] Bk2 Mnemonics

This commit is contained in:
ASNiVOR 2024-09-05 22:08:27 +01:00
parent 81043839c1
commit ca104aec8a
1 changed files with 19 additions and 1 deletions

View File

@ -786,7 +786,20 @@ namespace BizHawk.Client.Common
["Insert"] = 'v',
["Next Drive"] = '}',
["Next Slot"] = '>',
}
},
[VSystemID.Raw.ChannelF] = new()
{
["Forward"] = 'U',
["Back"] = 'D',
["Left"] = 'L',
["Right"] = 'R',
["Pull"] = 'O',
["Push"] = 'P',
["Time"] = 'T',
["Mode"] = 'M',
["Hold"] = 'H',
["Start"] = 'S',
},
};
private static readonly Dictionary<string, string> BaseAxisLookupTable = new Dictionary<string, string>
@ -837,6 +850,11 @@ namespace BizHawk.Client.Common
["Mouse Scroll X"] = "msX",
["Mouse Scroll Y"] = "msY",
},
[VSystemID.Raw.ChannelF] = new()
{
["CCW"] = "CCW",
["CW"] = "CW",
},
};
}
}