EmuHawk: Change deterministic back to how it was before. TRUE if a movie is queued, FALSE if not (and let the cores manage this setting further down the foodchain if they want to). Without this, mGBA skipbios will never work #1432
This commit is contained in:
parent
4a6a6079b0
commit
b7f2363584
|
@ -3594,10 +3594,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
if (args.Deterministic == null)
|
||||
{
|
||||
// force deterministic in this case
|
||||
// this is usually null for most cores
|
||||
// previously this was getting set to false if a movie was not queued for recording - surely that can't be good..
|
||||
deterministic = true;
|
||||
// movies should require deterministic emulation in ALL cases
|
||||
// if the core is managing its own DE through SyncSettings a 'deterministic' bool can be passed into the core's constructor
|
||||
// it is then up to the core itself to override its own local DeterministicEmulation setting
|
||||
// if a movie is *not* queued then make this false (this is needed for mGBA logic and is how things were working before I changed them -Asni)
|
||||
deterministic = Global.MovieSession.QueuedMovie != null;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -3605,14 +3606,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
deterministic = args.Deterministic.Value;
|
||||
}
|
||||
|
||||
if (Global.MovieSession.QueuedMovie != null)
|
||||
{
|
||||
// movies should require deterministic emulation in ALL cases
|
||||
// if the core is managing its own DE through SyncSettings a 'deterministic' bool should be passed into the core's constructor
|
||||
// it is then up to the core itself to override its own local DeterministicEmulation setting
|
||||
deterministic = true;
|
||||
}
|
||||
|
||||
if (!GlobalWin.Tools.AskSave())
|
||||
{
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue