Added missing shutdown log messages of the TOS system

This commit is contained in:
Willem Cazander 2025-06-14 15:37:07 +02:00
parent 7b82687ea9
commit 9933a0c3eb
2 changed files with 6 additions and 0 deletions

View file

@ -125,6 +125,11 @@ public enum GDXAppTos4 implements BãßᛗᚢᛗᛗᛉVū́ǘrChaliceEnumShot
} catch (BundleException e) {
throw new RuntimeException(e);
}
try {
systemBundle.waitForStop(1000 * 10);
} catch (InterruptedException ignored) {
}
Gdx.app.log(this.getClass().getSimpleName(), "Screens disposed and system stopped.");
}
@Override

View file

@ -331,6 +331,7 @@ public class GDXAppTos4Activator implements BundleActivator {
@Override
public void shutdown() {
LOG.debug("Shutdown requested...");
Gdx.app.exit();
}