TAStuido - support saving and loading of saveram in saveram-anchored movies

This commit is contained in:
adelikat 2015-07-26 15:48:12 -04:00
parent 490adc905e
commit 26f824625c
1 changed files with 13 additions and 0 deletions

View File

@ -78,6 +78,11 @@ namespace BizHawk.Client.Common
bs.PutLump(BinaryStateLump.Corestate, (BinaryWriter bw) => bw.Write(BinarySavestate));
}
}
else if (StartsFromSaveRam)
{
bs.PutLump(BinaryStateLump.MovieSaveRam, (BinaryWriter bw) => bw.Write(SaveRam));
}
ReportProgress(PROGRESS_STEP);
if (ClientSettingsForSave != null)
{
@ -193,6 +198,14 @@ namespace BizHawk.Client.Common
TextSavestate = tr.ReadToEnd();
});
}
else if (StartsFromSaveRam)
{
bl.GetLump(BinaryStateLump.MovieSaveRam, false,
delegate(BinaryReader br, long length)
{
SaveRam = br.ReadBytes((int)length);
});
}
// TasMovie enhanced information
if (bl.HasLump(BinaryStateLump.LagLog))