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:
adelikat 2014-06-30 12:50:46 +00:00
parent 5262bed608
commit 2bd52403a7
1 changed files with 2 additions and 2 deletions

View File

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