nymashock: resolve !s and hide some columns in tastudio

This commit is contained in:
feos 2022-07-03 13:11:11 +03:00
parent 318c1a7fea
commit 806830c314
2 changed files with 7 additions and 3 deletions

View File

@ -624,6 +624,8 @@ namespace BizHawk.Client.Common
["Right Stick, Pinky"] = 'p',
["Analog"] = 'M',
["Offscreen Shot"] = 'o',
["Open Tray"] = 'o',
["Close Tray"] = 'c',
},
};
@ -643,7 +645,8 @@ namespace BizHawk.Client.Common
["LStick Y"] = "lsY",
["RStick X"] = "rsX",
["RStick Y"] = "rsY",
["Disc Select"] = "Disc"
["Disc Select"] = "Disc",
["Disk Index"] = "Disk",
};
private static readonly Dictionary<string, Dictionary<string, string>> AxisSystemOverrides = new Dictionary<string, Dictionary<string, string>>

View File

@ -377,11 +377,12 @@ namespace BizHawk.Client.EmuHawk
c.Name == "Power"
|| c.Name == "Reset"
|| c.Name == "Light Sensor"
|| c.Name == "Open"
|| c.Name == "Close"
|| c.Name == "Disc Select"
|| c.Name == "Disk Index"
|| c.Name.StartsWith("Tilt")
|| c.Name.StartsWith("Key ")
|| c.Name.StartsWith("Open")
|| c.Name.StartsWith("Close")
|| c.Name.EndsWith("Tape")
|| c.Name.EndsWith("Disk")
|| c.Name.EndsWith("Block")