mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
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:
parent
ad1a899a7c
commit
0c1d56c16f
19 changed files with 36 additions and 31 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue