TasStateManager - add an InitialState property, not used yet and has limited value, but might help with clarity
This commit is contained in:
parent
2a9f8d9309
commit
cfff19b808
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue