From 1176ef41324ea0aa6c9d6108029f6df00f05eb24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Tue, 11 Jun 2024 21:59:46 +0200 Subject: [PATCH] Fix game time, found the magic number --- Cubegotchi.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cubegotchi.ino b/Cubegotchi.ino index cd2a2c5..45bd87e 100644 --- a/Cubegotchi.ino +++ b/Cubegotchi.ino @@ -349,7 +349,7 @@ void setup() { tamalib_register_hal(&hal); tamalib_set_framerate(TAMA_DISPLAY_FRAMERATE); // Tamagochi clock init, if in game time goes too fast increase this value in increments of 16 - tamalib_init(1002732); + tamalib_init(1002682); #if defined(ENABLE_SAVE_STATUS) || defined(AUTO_SAVE_MINUTES) || defined(ENABLE_LOAD_STATE_FROM_EEPROM) initEEPROM();