diff options
| author | Paul Buetow <paul@buetow.org> | 2025-04-15 02:53:19 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-04-15 02:53:19 +0300 |
| commit | 822c7de49419775fe20c982a302b95987bbac2cf (patch) | |
| tree | 25f84e977d206fe2d3fddae4238f56b49999ddc1 /sources/protocols/implementations/VSExternalTimeSyncProtocol.java | |
| parent | 53b373ad26ff3f3c1900b9baa0d5366113884ef6 (diff) | |
more translation into english
Diffstat (limited to 'sources/protocols/implementations/VSExternalTimeSyncProtocol.java')
| -rw-r--r-- | sources/protocols/implementations/VSExternalTimeSyncProtocol.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sources/protocols/implementations/VSExternalTimeSyncProtocol.java b/sources/protocols/implementations/VSExternalTimeSyncProtocol.java index 24128f6..f044861 100644 --- a/sources/protocols/implementations/VSExternalTimeSyncProtocol.java +++ b/sources/protocols/implementations/VSExternalTimeSyncProtocol.java @@ -66,9 +66,8 @@ public class VSExternalTimeSyncProtocol extends VSAbstractProtocol { long serverTime = recvMessage.getLong("time"); long newTime = serverTime + (long) (roundTripTime / 2); - log("Server Zeit: " + serverTime + "; RTT: " + roundTripTime + - "; Alte Zeit: " + recvTime + "; Neue Zeit: " + newTime + - "; Offset: " + (newTime - recvTime)); + log("Server time: " + serverTime + "; RTT: " + roundTripTime + "; Old time: " + recvTime + "; New time: " + newTime + "; Offset: " + (newTime - recvTime)); + process.setTime(newTime); } |
