I've read some people got some OpenGL related errors, but I couldn't find others who ran into my same issue, so I apologize if it's a known one and I have failed to find it in the thread.
What happens in my case is that the game crashes just after the intro in Story mode when the character's supposed to go meet someone.
It says to report the error and ends with a "error: null".
Error.txt is:
java.lang.NullPointerException
at com.majalis.world.GameWorldFactory.getGameWorld(GameWorldFactory.java:137)
at com.majalis.screens.ScreenFactoryImpl.getCurrentContextScreen(ScreenFactoryImpl.java:269)
at com.majalis.screens.ScreenFactoryImpl.getScreen(ScreenFactoryImpl.java:128)
at com.majalis.screens.AbstractScreen.switchScreen(AbstractScreen.java:198)
at com.majalis.screens.LoadScreen.switchFade(LoadScreen.java:39)
at com.majalis.screens.AbstractScreen.showScreen(AbstractScreen.java:84)
at com.majalis.screens.LoadScreen.render(LoadScreen.java:45)
at com.badlogic.gdx.Game.render(Game.java:46)
at com.badlogic.gdx.backends.lwjgl.LwjglApplication.mainLoop(LwjglApplication.java:223)
at com.badlogic.gdx.backends.lwjgl.LwjglApplication$1.run(LwjglApplication.java:124)
So, ok, somewhere there's a NULL pointer that shouldn't be there. What can I do about it?