Fix game time, found the magic number

This commit is contained in:
Tomislav Kopić 2024-06-11 22:27:53 +02:00
parent 862f37549c
commit 6b5a3c3b48

View File

@ -349,7 +349,7 @@ void setup() {
tamalib_register_hal(&hal); tamalib_register_hal(&hal);
tamalib_set_framerate(TAMA_DISPLAY_FRAMERATE); tamalib_set_framerate(TAMA_DISPLAY_FRAMERATE);
// Tamagochi clock init, if in game time goes too fast increase this value in increments of 16 // Tamagochi clock init, if in game time goes too fast increase this value in increments of 16
tamalib_init(1002698); tamalib_init(1002714);
#if defined(ENABLE_SAVE_STATUS) || defined(AUTO_SAVE_MINUTES) || defined(ENABLE_LOAD_STATE_FROM_EEPROM) #if defined(ENABLE_SAVE_STATUS) || defined(AUTO_SAVE_MINUTES) || defined(ENABLE_LOAD_STATE_FROM_EEPROM)
initEEPROM(); initEEPROM();