Fix N64 movie playback by removing a bogus defensive validation check that had bogus logic of ignoring input that didn't match the check. Bogus logic was bogus.

This commit is contained in:
adelikat 2014-05-15 18:48:41 +00:00
parent 0add712863
commit 0fa33c7ca8
1 changed files with 1 additions and 5 deletions

View File

@ -417,11 +417,7 @@ namespace BizHawk.Client.Common
foreach (string name in MnemonicConstants.ANALOGS[ControlType].Keys)
{
if (InputValidate.IsSigned(mnemonic.Substring(srcindex + start, 4)))
{
Force("P" + player + " " + name, Int32.Parse(mnemonic.Substring(srcindex + start, 4)));
}
Force("P" + player + " " + name, Int32.Parse(mnemonic.Substring(srcindex + start, 4)));
start += 5;
}
}