Fix defctrl.json json parse error, Saturn keyboard - change names of keyboard R and L to not collide with the controller button names
This commit is contained in:
parent
f5883d8332
commit
810979dab2
|
@ -543,7 +543,7 @@
|
|||
"P1 Q": "Q",
|
||||
"P1 W": "W",
|
||||
"P1 E": "E",
|
||||
"P1 R": "R",
|
||||
"P1 R(Key)": "R",
|
||||
"P1 T": "T",
|
||||
"P1 Y(Key)": "Y",
|
||||
"P1 U": "U",
|
||||
|
@ -562,7 +562,7 @@
|
|||
"P1 H": "H",
|
||||
"P1 J": "J",
|
||||
"P1 K": "K",
|
||||
"P1 L": "L",
|
||||
"P1 L(Key)": "L",
|
||||
"P1 Semicolon;": "Semicolon",
|
||||
"P1 Quote'": "Apostrophe",
|
||||
"P1 LeftShift": "LeftShift",
|
||||
|
@ -1495,5 +1495,6 @@
|
|||
"Mult": 1.0,
|
||||
"Deadzone": 0.1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -452,7 +452,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn
|
|||
"V",
|
||||
"F",
|
||||
"T",
|
||||
"R",
|
||||
"R(Key)",
|
||||
"5",
|
||||
null,
|
||||
null,
|
||||
|
@ -482,7 +482,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn
|
|||
null,
|
||||
"Period.",
|
||||
"Slash/",
|
||||
"L",
|
||||
"L(Key)",
|
||||
"Semicolon;",
|
||||
"P",
|
||||
"Minus-",
|
||||
|
@ -592,7 +592,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn
|
|||
case "Q": return 201;
|
||||
case "W": return 202;
|
||||
case "E": return 203;
|
||||
case "R": return 204;
|
||||
case "R(Key)": return 204;
|
||||
case "T": return 205;
|
||||
case "Y(Key)": return 206;
|
||||
case "U": return 207;
|
||||
|
@ -612,7 +612,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn
|
|||
case "H": return 306;
|
||||
case "J": return 307;
|
||||
case "K": return 308;
|
||||
case "L": return 309;
|
||||
case "L(Key)": return 309;
|
||||
case "Semicolon;": return 310;
|
||||
case "Quote'": return 311;
|
||||
|
||||
|
|
Loading…
Reference in New Issue