Fixed steam crash with a workaround

This commit is contained in:
Anuken
2019-10-01 17:35:23 -04:00
parent 4bc37ab065
commit 251b8deb25
2 changed files with 12 additions and 1 deletions

View File

@@ -388,7 +388,10 @@ public class Control implements ApplicationListener, Loadable{
saves.update();
//update and load any requested assets
assets.update();
try{
assets.update();
}catch(Exception ignored){
}
input.updateState();