Add files via upload
This commit is contained in:
parent
a4dcd4d010
commit
b65d87f40c
|
@ -43,7 +43,7 @@
|
||||||
/// Returns whether or not the rewind action actually occured
|
/// Returns whether or not the rewind action actually occured
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
bool Rewind();
|
bool Rewind(ref bool runframe);
|
||||||
|
|
||||||
bool WantsToControlRestartMovie { get; }
|
bool WantsToControlRestartMovie { get; }
|
||||||
|
|
||||||
|
|
|
@ -4461,7 +4461,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (isRewinding)
|
if (isRewinding)
|
||||||
{
|
{
|
||||||
runFrame = true; // TODO: the master should be deciding this!
|
runFrame = true; // TODO: the master should be deciding this!
|
||||||
Master.Rewind();
|
Master.Rewind(ref runFrame);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue