revert this logic in snes controller config

This commit is contained in:
adelikat 2017-04-20 20:45:29 -05:00
parent a46acca981
commit 15e9a9174c
1 changed files with 2 additions and 3 deletions

View File

@ -62,9 +62,8 @@ namespace BizHawk.Client.EmuHawk
{ {
var leftPort = (LibsnesControllerDeck.ControllerType)Enum.Parse(typeof(LibsnesControllerDeck.ControllerType), Port1ComboBox.SelectedItem.ToString()); var leftPort = (LibsnesControllerDeck.ControllerType)Enum.Parse(typeof(LibsnesControllerDeck.ControllerType), Port1ComboBox.SelectedItem.ToString());
var rightPort = (LibsnesControllerDeck.ControllerType)Enum.Parse(typeof(LibsnesControllerDeck.ControllerType), Port2ComboBox.SelectedItem.ToString()); var rightPort = (LibsnesControllerDeck.ControllerType)Enum.Parse(typeof(LibsnesControllerDeck.ControllerType), Port2ComboBox.SelectedItem.ToString());
ToggleMouseSection( ToggleMouseSection(leftPort == LibsnesControllerDeck.ControllerType.Mouse
leftPort == LibsnesControllerDeck.ControllerType.Mouse || leftPort == LibsnesControllerDeck.ControllerType.SuperScope || rightPort == LibsnesControllerDeck.ControllerType.Mouse);
|| rightPort == LibsnesControllerDeck.ControllerType.Mouse || rightPort == LibsnesControllerDeck.ControllerType.SuperScope);
} }
} }