Disabling L+R/U+D should not disable the N64's C-up C-down/C-right C-left
This commit is contained in:
parent
7b7b95e95d
commit
61a7dea31f
|
@ -74,7 +74,7 @@ namespace BizHawk.MultiClient
|
|||
|
||||
string prefix;
|
||||
|
||||
if (button.Contains("Down"))
|
||||
if (button.Contains("Down") && !button.Contains(" C "))
|
||||
{
|
||||
prefix = button.GetPrecedingString("Down");
|
||||
if (Source.IsPressed(prefix + "Up"))
|
||||
|
@ -82,7 +82,7 @@ namespace BizHawk.MultiClient
|
|||
return false;
|
||||
}
|
||||
}
|
||||
if (button.Contains("Right"))
|
||||
if (button.Contains("Right") && !button.Contains(" C "))
|
||||
{
|
||||
prefix = button.GetPrecedingString("Right");
|
||||
if (Source.IsPressed(prefix + "Left"))
|
||||
|
|
Loading…
Reference in New Issue