Core: Hide determinism global

This is only ever queried and not set outside of the Core.cpp, so this
should just be hidden internally and just have a function exposed that
allows querying it.
This commit is contained in:
Lioncash
2017-04-03 13:30:58 -04:00
parent ad1a899a7c
commit 0c1d56c16f
19 changed files with 36 additions and 31 deletions

View File

@ -21,8 +21,6 @@ namespace Core
// TODO: ugly, remove
extern bool g_aspect_wide;
extern bool g_want_determinism;
bool GetIsThrottlerTempDisabled();
void SetIsThrottlerTempDisabled(bool disable);
@ -51,6 +49,8 @@ bool IsRunningInCurrentThread(); // this tells us whether we are running in the
bool IsCPUThread(); // this tells us whether we are the CPU thread.
bool IsGPUThread();
bool WantsDeterminism();
// [NOT THREADSAFE] For use by Host only
void SetState(State state);
State GetState();