Skip to content

Commit

Permalink
Fix sys.precise_sleep being interpreted the wrong way around.
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 committed Jul 15, 2023
1 parent d967bc9 commit d80be16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Robust.Shared/Timing/GameLoop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public GameLoop(
_prof = prof;
_sawmill = sawmill;

_precisionSleep = options.Precise ? new PrecisionSleepUniversal() : PrecisionSleep.Create();
_precisionSleep = options.Precise ? PrecisionSleep.Create() : new PrecisionSleepUniversal();
}

/// <summary>
Expand Down

0 comments on commit d80be16

Please sign in to comment.