Fix ridiculous tunnel loop crash
This commit is contained in:
@@ -34,7 +34,7 @@ public class Vars{
|
||||
//save file directory
|
||||
public static final FileHandle saveDirectory = Gdx.files.local("mindustry-saves/");
|
||||
//scale of the font
|
||||
public static float fontscale = Unit.dp.inPixels(1f)/2f;
|
||||
public static float fontscale = Math.max(Unit.dp.inPixels(1f)/2f, 0.5f);
|
||||
//camera zoom displayed on startup
|
||||
public static final int baseCameraScale = Math.round(Unit.dp.inPixels(4));
|
||||
//how much the zoom changes every zoom button press
|
||||
|
||||
Reference in New Issue
Block a user