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:
adelikat 2014-05-18 00:40:32 +00:00
parent d33a545605
commit b4deb97587
1 changed files with 2 additions and 8 deletions

View File

@ -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);
}