mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 19:14:20 +01:00
Change variable name and revert
This commit is contained in:
parent
c7a840194c
commit
312d3b433e
@ -800,11 +800,11 @@ namespace DS4Windows
|
||||
|
||||
if (conType == ConnectionType.SONYWA)
|
||||
{
|
||||
bool noneSynced = inputReport[31] != 0;
|
||||
if (noneSynced != synced)
|
||||
bool controllerSynced = inputReport[31] == 0;
|
||||
if (controllerSynced != synced)
|
||||
{
|
||||
SyncChange?.Invoke(this, EventArgs.Empty);
|
||||
synced = noneSynced;
|
||||
synced = controllerSynced;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user