diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-04-03 13:30:58 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-04-03 14:56:12 -0400 |
| commit | 0c1d56c16f7809c8acb9a768ef2b895929815031 (patch) | |
| tree | d46646c0ffa1fad67293f5f6e4102b50ca093d22 /Source/Core/InputCommon/GCAdapter.cpp | |
| parent | ad1a899a7c8da07d61818060b0a6fe9023d77446 (diff) | |
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.
Diffstat (limited to 'Source/Core/InputCommon/GCAdapter.cpp')
| -rw-r--r-- | Source/Core/InputCommon/GCAdapter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/GCAdapter.cpp b/Source/Core/InputCommon/GCAdapter.cpp index 5916ab600f..2cb7819d9d 100644 --- a/Source/Core/InputCommon/GCAdapter.cpp +++ b/Source/Core/InputCommon/GCAdapter.cpp @@ -453,7 +453,7 @@ GCPadStatus Input(int chan) pad.triggerLeft = controller_payload_copy[1 + (9 * chan) + 7]; pad.triggerRight = controller_payload_copy[1 + (9 * chan) + 8]; } - else if (!Core::g_want_determinism) + else if (!Core::WantsDeterminism()) { // This is a hack to prevent a desync due to SI devices // being different and returning different values. |
