mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
Fixed issue with SONYWA connections having invalid calibration data
This commit is contained in:
parent
92550de1ce
commit
ac360c426d
@ -436,7 +436,7 @@ namespace DS4Windows
|
||||
warnInterval = WARN_INTERVAL_BT;
|
||||
audio = new DS4Audio();
|
||||
micAudio = new DS4Audio(DS4Library.CoreAudio.DataFlow.Capture);
|
||||
synced = isValidSerial();
|
||||
runCalib = synced = isValidSerial();
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -1000,7 +1000,7 @@ namespace DS4Windows
|
||||
bool controllerSynced = inputReport[31] == 0;
|
||||
if (controllerSynced != synced)
|
||||
{
|
||||
synced = controllerSynced;
|
||||
runCalib = synced = controllerSynced;
|
||||
SyncChange?.Invoke(this, EventArgs.Empty);
|
||||
sendOutputReport(true, true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user