Skip to content
Snippets Groups Projects
Commit d604be48 authored by Matyáš Latner's avatar Matyáš Latner
Browse files

#19 Fix pausing app while application scope assets loading

parent ab413f8c
No related merge requests found
......@@ -119,8 +119,10 @@ public class Tablexia extends TablexiaApplication {
@Override
public void pause() {
super.pause();
// don't use menu open animation for android pause event (animation is run after resume on android)
mainMenuContainer.openMainMenu(!Gdx.app.getType().equals(Application.ApplicationType.Android));
if (mainMenuContainer != null) {
// don't use menu open animation for android pause event (animation is run after resume on android)
mainMenuContainer.openMainMenu(!Gdx.app.getType().equals(Application.ApplicationType.Android));
}
}
@Override
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment