TasStateManager - add an InitialState property, not used yet and has limited value, but might help with clarity

This commit is contained in:
adelikat 2014-10-05 12:59:12 +00:00
parent 2a9f8d9309
commit cfff19b808
1 changed files with 13 additions and 0 deletions

View File

@ -63,6 +63,19 @@ namespace BizHawk.Client.Common
}
}
public byte[] InitialState
{
get
{
if (_movie.StartsFromSavestate)
{
return _movie.BinarySavestate;
}
return States[0];
}
}
/// <summary>
/// Requests that the current emulator state be captured
/// Unless force is true, the state may or may not be captured depending on the logic employed by "greenzone" management