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:
parent
0add712863
commit
0fa33c7ca8
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue