Revert "now no one gets to have any fun"

This reverts commit e199dfda0d.
This commit is contained in:
adelikat 2017-04-22 15:14:20 -05:00
parent e199dfda0d
commit d14b2abd17
1 changed files with 7 additions and 1 deletions

View File

@ -100,7 +100,13 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES
public string SystemId { get; }
public bool DeterministicEmulation => true;
// adelikat: Nasty hack to force new business logic. Compatibility (and Accuracy when fully supported) will ALWAYS be in deterministic mode,
// a consequence is a permanent performance hit to the compatibility core
// Perormance will NEVER be in deterministic mode (and the client side logic will prohibit movie recording on it)
// feos: Nasty hack to a nasty hack. Allow user disable it with a strong warning.
public bool DeterministicEmulation =>
_settings.ForceDeterminism
&& (CurrentProfile == "Compatibility" || CurrentProfile == "Accuracy");
public string BoardName { get; }