Fix sys.precise_sleep being interpreted the wrong way around.

This commit is contained in:
Pieter-Jan Briers
2023-07-15 23:28:26 +02:00
parent d967bc9fdc
commit d80be16f6c

View File

@@ -122,7 +122,7 @@ namespace Robust.Shared.Timing
_prof = prof;
_sawmill = sawmill;
_precisionSleep = options.Precise ? new PrecisionSleepUniversal() : PrecisionSleep.Create();
_precisionSleep = options.Precise ? PrecisionSleep.Create() : new PrecisionSleepUniversal();
}
/// <summary>