diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs index 0956f5d0bb..bd7d13bba2 100644 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2MnemonicLookup.cs @@ -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 BaseAxisLookupTable = new Dictionary @@ -837,6 +850,11 @@ namespace BizHawk.Client.Common ["Mouse Scroll X"] = "msX", ["Mouse Scroll Y"] = "msY", }, + [VSystemID.Raw.ChannelF] = new() + { + ["CCW"] = "CCW", + ["CW"] = "CW", + }, }; } }