Remove the same bogus logic that was in the mnemonic system for parasing analog input, this time in another bogus place bogusly copy/pasted and equally bogus logic, fixes N64 virtualpad playback behavior
This commit is contained in:
parent
d33a545605
commit
b4deb97587
|
@ -97,15 +97,9 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
int x = 0;
|
||||
int y = 0;
|
||||
if (InputValidate.IsSigned(buttons.Substring(14, 4)))
|
||||
{
|
||||
x = Int32.Parse(buttons.Substring(14, 4));
|
||||
x = int.Parse(buttons.Substring(14, 4));
|
||||
y = int.Parse(buttons.Substring(19, 4));
|
||||
|
||||
}
|
||||
if (InputValidate.IsSigned(buttons.Substring(19, 4)))
|
||||
{
|
||||
y = Int32.Parse(buttons.Substring(19, 4));
|
||||
}
|
||||
set_analog(true, x, y);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue