mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
GCAdapter: Use determinism hack on Android
This hack was added in 8f0cbefbe5
, and the part of it in SI_DeviceGCAdapter is present on Android already, so I don't see any reason why this part doesn't apply to Android.
This commit is contained in:
@ -790,10 +790,7 @@ GCPadStatus Input(int chan)
|
|||||||
pad.triggerLeft = controller_payload_copy[1 + (9 * chan) + 7];
|
pad.triggerLeft = controller_payload_copy[1 + (9 * chan) + 7];
|
||||||
pad.triggerRight = controller_payload_copy[1 + (9 * chan) + 8];
|
pad.triggerRight = controller_payload_copy[1 + (9 * chan) + 8];
|
||||||
}
|
}
|
||||||
else
|
else if (!Core::WantsDeterminism())
|
||||||
#if GCADAPTER_USE_LIBUSB_IMPLEMENTATION
|
|
||||||
if (!Core::WantsDeterminism())
|
|
||||||
#endif
|
|
||||||
{
|
{
|
||||||
// This is a hack to prevent a desync due to SI devices
|
// This is a hack to prevent a desync due to SI devices
|
||||||
// being different and returning different values.
|
// being different and returning different values.
|
||||||
|
Reference in New Issue
Block a user