Minor cleanup

This commit is contained in:
Anuken
2021-03-09 19:04:29 -05:00
parent 8aba480148
commit b1e8001ae8
4 changed files with 4 additions and 5 deletions

View File

@@ -325,7 +325,7 @@ public class Renderer implements ApplicationListener{
int w = world.width() * tilesize, h = world.height() * tilesize;
int memory = w * h * 4 / 1024 / 1024;
if(memory >= 65){
if(memory >= (mobile ? 65 : 120)){
ui.showInfo("@screenshot.invalid");
return;
}