Fix multitrack movie recording

This commit is contained in:
adelikat 2014-08-10 02:21:08 +00:00
parent cb23aaeaa2
commit 4afc5c4ec6
1 changed files with 8 additions and 3 deletions

View File

@ -88,6 +88,10 @@ namespace BizHawk.Client.Common
}
public virtual void Truncate(int frame)
{
// This is a bad way to do multitrack logic, pass the info in instead of going to the global
// and it is weird for Truncte to possibly not truncate
if (!Global.MovieSession.MultiTrack.IsActive)
{
if (frame < _log.Count)
{
@ -95,6 +99,7 @@ namespace BizHawk.Client.Common
Changes = true;
}
}
}
public IController GetInputState(int frame)
{