C64 - FIx mnemonics for previous and next disk buttons
This commit is contained in:
parent
cd7e6f4f67
commit
617bc16079
|
@ -116,7 +116,10 @@ namespace BizHawk.Client.Common
|
||||||
|
|
||||||
["Open"] = 'O',
|
["Open"] = 'O',
|
||||||
["Close"] = 'C',
|
["Close"] = 'C',
|
||||||
["Pedal"] = 'P'
|
["Pedal"] = 'P',
|
||||||
|
|
||||||
|
["Next Disk"] = '>',
|
||||||
|
["Previous Disk"] = '<'
|
||||||
};
|
};
|
||||||
|
|
||||||
private readonly Dictionary<string, Dictionary<string, char>> _systemOverrides = new Dictionary<string, Dictionary<string, char>>
|
private readonly Dictionary<string, Dictionary<string, char>> _systemOverrides = new Dictionary<string, Dictionary<string, char>>
|
||||||
|
@ -300,8 +303,6 @@ namespace BizHawk.Client.Common
|
||||||
["Control"] = 'c' ,
|
["Control"] = 'c' ,
|
||||||
["Shift"] = '^' ,
|
["Shift"] = '^' ,
|
||||||
["Caps Lock"] = 'C' ,
|
["Caps Lock"] = 'C' ,
|
||||||
["Next Disk"] = '>' ,
|
|
||||||
["Previous Disk"] = '<' ,
|
|
||||||
["White Apple"] = 'w' ,
|
["White Apple"] = 'w' ,
|
||||||
["Black Apple"] = 'b' ,
|
["Black Apple"] = 'b' ,
|
||||||
["L"] = 'L' ,
|
["L"] = 'L' ,
|
||||||
|
|
Loading…
Reference in New Issue