Don't log entire GPU detection errors

This commit is contained in:
Anuken
2025-10-30 20:07:08 -04:00
parent 5ea0ebbf2a
commit 579ba5cac2
2 changed files with 2 additions and 2 deletions

View File

@@ -233,13 +233,13 @@ public abstract class ClientLauncher extends ApplicationCore implements Platform
if(assets.update(1000 / loadingFPS)){
loader.dispose();
loader = null;
Log.info("Total time to load: @ms", Time.timeSinceMillis(beginTime));
for(ApplicationListener listener : modules){
listener.init();
}
mods.eachClass(Mod::init);
finished = true;
Events.fire(new ClientLoadEvent());
Log.info("Total time to load: @ms", Time.timeSinceMillis(beginTime));
clientLoaded = true;
super.resize(graphics.getWidth(), graphics.getHeight());
app.post(() -> app.post(() -> app.post(() -> app.post(() -> {