diff --git a/core/assets/bundles/bundle.properties b/core/assets/bundles/bundle.properties index da58c45a0d..103215d599 100644 --- a/core/assets/bundles/bundle.properties +++ b/core/assets/bundles/bundle.properties @@ -121,7 +121,7 @@ committingchanges = Committing Changes done = Done feature.unsupported = Your device does not support this feature. -mods.initfailed = [red]âš [] The previous Mindustry instance failed to initialize. This was likely caused by misbehaving mods.\n\nTo prevent a crash loop, [red]all mods have been disabled.[] +mods.initfailed = [red]\u26a0[] The previous Mindustry instance failed to initialize. This was likely caused by misbehaving mods.\n\nTo prevent a crash loop, [red]all mods have been disabled.[] mods = Mods mods.none = [lightgray]No mods found! mods.guide = Modding Guide diff --git a/core/src/mindustry/graphics/MultiPacker.java b/core/src/mindustry/graphics/MultiPacker.java index 6343739906..bb10f9dcdd 100644 --- a/core/src/mindustry/graphics/MultiPacker.java +++ b/core/src/mindustry/graphics/MultiPacker.java @@ -102,10 +102,10 @@ public class MultiPacker implements Disposable{ //main page can be massive, but 8192 throws GL_OUT_OF_MEMORY on some GPUs and I can't deal with it yet. main(4096), - environment(2048, 2048), - editor(2048, 2048), + environment(4096, 2048), + editor(4096, 2048), rubble(4096, 2048), - ui(2048); + ui(4096); public static final PageType[] all = values();