Skip to content

Commit

Permalink
fix: Close the app upon crashing
Browse files Browse the repository at this point in the history
  • Loading branch information
crykn committed Mar 10, 2024
1 parent b3f0136 commit 063ce16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ public final void create() {
LOG.error(
"An unexpected error occurred while initialising the application: %s",
Exceptions.getStackTraceAsString(e));
Gdx.app.exit();
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public EskalonApplicationStarter(String appName,
StartArguments.create().enableDebugLogging().build());
}

@SuppressWarnings("unchecked")
@Override
public void create() {
/*
Expand Down

0 comments on commit 063ce16

Please sign in to comment.