mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2025-01-13 16:49:08 +01:00
Display input delay as a double
This commit is contained in:
parent
d730369600
commit
4ec4eb830f
@ -810,7 +810,7 @@ namespace DS4Windows
|
||||
tempLatencyCount++;
|
||||
|
||||
//Latency = latencyQueue.Average();
|
||||
Latency = latencySum / tempLatencyCount;
|
||||
Latency = latencySum / (double)tempLatencyCount;
|
||||
|
||||
readWaitEv.Set();
|
||||
|
||||
|
2
DS4Windows/Properties/Resources.Designer.cs
generated
2
DS4Windows/Properties/Resources.Designer.cs
generated
@ -667,7 +667,7 @@ namespace DS4WinWPF.Properties {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Input Delay: {0} ms.
|
||||
/// Looks up a localized string similar to Input Delay: {0:0.##} ms.
|
||||
/// </summary>
|
||||
public static string InputDelay {
|
||||
get {
|
||||
|
@ -314,7 +314,7 @@
|
||||
<value>If removing DS4Windows, You can delete the settings following the profile folder link</value>
|
||||
</data>
|
||||
<data name="InputDelay" xml:space="preserve">
|
||||
<value>Input Delay: {0} ms</value>
|
||||
<value>Input Delay: {0:0.##} ms</value>
|
||||
</data>
|
||||
<data name="InstallComplete" xml:space="preserve">
|
||||
<value>Install Complete</value>
|
||||
|
Loading…
x
Reference in New Issue
Block a user