almost working jukebox ui except for the 'q' key

This commit is contained in:
minjaesong
2024-01-13 23:08:10 +09:00
parent 3c3e650a97
commit 5a7b345e7f
7 changed files with 92 additions and 48 deletions

View File

@@ -1338,8 +1338,9 @@ open class TerrarumIngame(batch: FlippingSpriteBatch) : IngameInstance(batch) {
uiAutosaveNotifier.setAsClose()
autosaveTimer = 0f
debugTimers.put("Last Autosave Duration", System.nanoTime() - start)
printdbg(this, "Last Autosave Duration: ${(System.nanoTime() - start) / 1000000000} s")
val timeDiff = System.nanoTime() - start
debugTimers.put("Last Autosave Duration", timeDiff)
printdbg(this, "Last Autosave Duration: ${(timeDiff) / 1000000000} s")
}
}