Some Changes flag management in movie objects

This commit is contained in:
adelikat 2014-07-11 18:06:18 +00:00
parent 7e768eacb1
commit 2072eac45f
5 changed files with 13 additions and 0 deletions

View File

@ -121,6 +121,8 @@ namespace BizHawk.Client.Common
});
}
}
Changes = false;
return true;
}

View File

@ -111,6 +111,7 @@ namespace BizHawk.Client.Common
BinarySavestate = Convert.FromBase64String(Header.SavestateBinaryBase64Blob);
Loaded = true;
_changes = false;
return true;
}
@ -258,6 +259,8 @@ namespace BizHawk.Client.Common
}
}
}
_changes = false;
}
}
}

View File

@ -176,6 +176,8 @@ namespace BizHawk.Client.Common
}
});
}
Changes = false;
return true;
}

View File

@ -43,6 +43,11 @@ namespace BizHawk.Client.Common
}
}
public void ClearChanges()
{
Changes = false;
}
public override void StartNewRecording()
{
LagLog.Clear();

View File

@ -127,6 +127,7 @@ namespace BizHawk.Client.EmuHawk
_tas = Global.MovieSession.Movie as TasMovie;
_tas.Filename = DefaultTasProjName(); // TODO don't do this, take over any mainform actions that can crash without a filename
_tas.PopulateWithDefaultHeaderValues();
_tas.ClearChanges();
}
private static string DefaultTasProjName()