From 62ed1b5b7341c306dae1d26466f9d07586bb7c5d Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 20 Apr 2017 21:05:11 -0500 Subject: [PATCH] snes - change x,y button names to something less vauge --- .../Nintendo/SNES/LibsnesControllerDeck.cs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs index 91966424bc..8dd66388de 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesControllerDeck.cs @@ -275,8 +275,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES }, FloatControls = { - "0X", - "0Y" + "0Mouse X", + "0Mouse Y" }, FloatRanges = { @@ -296,7 +296,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES default: return 0; case 0: - var x = (int)controller.GetFloat("0X"); + var x = (int)controller.GetFloat("0Mouse X"); if (LimitAnalogChangeSensitivity) { x = x.Clamp(-10, 10); @@ -304,7 +304,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES return (short)x; case 1: - var y = (int)controller.GetFloat("0Y"); + var y = (int)controller.GetFloat("0Mouse Y"); if (LimitAnalogChangeSensitivity) { y = y.Clamp(-10, 10); @@ -334,13 +334,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES }, FloatControls = { - "0X", - "0Y" + "0Scope X", + "0Scope Y" }, FloatRanges = { - // problem: when you're in 240 line mode, the limit on Y needs to be 240. - // when you're in 224 mode, it needs to be 224. perhaps the deck needs to account for this... + // problem: when you're in 240 line mode, the limit on Y needs to be 240. + // when you're in 224 mode, it needs to be 224. perhaps the deck needs to account for this... new[] { 0f, 128f, 256f }, new[] { 0f, 0f, 240f } } @@ -355,10 +355,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES default: return 0; case 0: - var x = (int)controller.GetFloat("0X"); + var x = (int)controller.GetFloat("0Scope X"); return (short)x; case 1: - var y = (int)controller.GetFloat("0Y"); + var y = (int)controller.GetFloat("0Scope Y"); return (short)y; case 2: return (short)(controller.IsPressed("0Trigger") ? 1 : 0);