Bk2 movies - remove auto input log conversion on load, since load is too soon to do this as it will not use the controller definition of the new core instance that hasn't been loaded yet. As of this commit, it doesn't use the log key when reading input either, so log entry logic is dependent on mnemonic orders and such things from the controller definition. Will need to ponder a way to put this back in.
This commit is contained in:
parent
5262bed608
commit
2bd52403a7
|
@ -76,7 +76,7 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
else if (line[0] == '|')
|
||||
{
|
||||
_log.Add(ConvertLogEntryFromFile(line, _logKey));
|
||||
_log.Add(line);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -123,7 +123,7 @@ namespace BizHawk.Client.Common
|
|||
}
|
||||
else if (line.StartsWith("|"))
|
||||
{
|
||||
SetFrameAt(i, ConvertLogEntryFromFile(line, _logKey));
|
||||
SetFrameAt(i, line);
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue