diff --git a/buildSrc/src/main/kotlin/BuildConfig.kt b/buildSrc/src/main/kotlin/BuildConfig.kt index 7a98bbaf71..baadf8c8c7 100644 --- a/buildSrc/src/main/kotlin/BuildConfig.kt +++ b/buildSrc/src/main/kotlin/BuildConfig.kt @@ -3,8 +3,8 @@ package com.unciv.build object BuildConfig { const val kotlinVersion = "1.8.0" const val appName = "Unciv" - const val appCodeNumber = 852 - const val appVersion = "4.6.4" + const val appCodeNumber = 853 + const val appVersion = "4.6.4-patch1" const val gdxVersion = "1.11.0" const val roboVMVersion = "2.3.1" diff --git a/core/src/com/unciv/UncivGame.kt b/core/src/com/unciv/UncivGame.kt index aefd5aaa5b..872e2e0a0c 100644 --- a/core/src/com/unciv/UncivGame.kt +++ b/core/src/com/unciv/UncivGame.kt @@ -531,7 +531,7 @@ open class UncivGame(val isConsoleMode: Boolean = false) : Game(), PlatformSpeci companion object { //region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT - val VERSION = Version("4.6.4", 852) + val VERSION = Version("4.6.4-patch1", 853) //endregion lateinit var Current: UncivGame diff --git a/core/src/com/unciv/ui/components/Fonts.kt b/core/src/com/unciv/ui/components/Fonts.kt index 3f9e4aae57..6b234ca51d 100644 --- a/core/src/com/unciv/ui/components/Fonts.kt +++ b/core/src/com/unciv/ui/components/Fonts.kt @@ -303,10 +303,8 @@ object Fonts { frameBuffer.end() // These need to be disposed so they don't clog up the RAM *but not right now* - Gdx.app.postRunnable { - spriteBatch.dispose() - frameBuffer.dispose() - } + spriteBatch.dispose() + frameBuffer.dispose() // Pixmap is now *upside down* so we need to flip it around the y axis