It's about time for showPixelUnits to be on by default, we have all the base game units set up nicely :)

This commit is contained in:
Yair Morgenstern 2022-01-25 22:58:47 +02:00
parent 40d88eb486
commit c51e7a5e1e
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class GameSettings {
var showMinimap: Boolean = true
var minimapSize: Int = 6 // default corresponds to 15% screen space
var showPixelUnits: Boolean = false
var showPixelUnits: Boolean = true
var showPixelImprovements: Boolean = true
var continuousRendering = false
var userId = ""

View File

@ -18,7 +18,7 @@ import com.unciv.ui.tutorials.TutorialController
import com.unciv.ui.worldscreen.WorldScreen
import com.unciv.ui.worldscreen.mainmenu.OptionsPopup
open class BaseScreen : Screen {
abstract class BaseScreen : Screen {
val game: UncivGame = UncivGame.Current
val stage: Stage