Fixed #9888
This commit is contained in:
@@ -66,7 +66,7 @@ public abstract class ClientLauncher extends ApplicationCore implements Platform
|
||||
|
||||
Time.setDeltaProvider(() -> {
|
||||
float result = Core.graphics.getDeltaTime() * 60f;
|
||||
return (Float.isNaN(result) || Float.isInfinite(result)) ? 1f : Mathf.clamp(result, 0.0001f, 60f / 10f);
|
||||
return (Float.isNaN(result) || Float.isInfinite(result)) ? 1f : Mathf.clamp(result, 0.0001f, maxDeltaClient);
|
||||
});
|
||||
|
||||
UI.loadColors();
|
||||
|
||||
Reference in New Issue
Block a user