From e0349c3e20ca77e74ebc86bd1641a0959f4827f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Tue, 11 Jun 2024 19:29:26 +0200 Subject: [PATCH] Fix game time --- Cubegotchi.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cubegotchi.ino b/Cubegotchi.ino index 4b5fdac..c8ab378 100644 --- a/Cubegotchi.ino +++ b/Cubegotchi.ino @@ -348,7 +348,8 @@ void setup() { tamalib_register_hal(&hal); tamalib_set_framerate(TAMA_DISPLAY_FRAMERATE); - tamalib_init(1010000); + // Tamagochi clock init, if in game time goes too fast increase this value in increments of 100 + tamalib_init(1005000); #if defined(ENABLE_SAVE_STATUS) || defined(AUTO_SAVE_MINUTES) || defined(ENABLE_LOAD_STATE_FROM_EEPROM) initEEPROM();