You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working off of 1.9, using the new fake RTC that was introduced. The relevant configurations are in include/config/overworld.h I used: #define OW_TIMES_OF_DAY GEN_LATEST #define OW_USE_FAKE_RTC TRUE #define OW_ALTERED_TIME_RATIO GEN_LATEST
Then in start_menu.c, the relevant lines of code are:
StringExpandPlaceholders(gStringVar4, gDayNameStringsTable[(gLocalTime.days % 7)]); //StringExpandPlaceholders(gStringVar4, gText_ContinueMenuTime); // prints "time" word, from version before weekday was added and leaving it here in case anyone would prefer to use it
if you leave the line uncommented the way it is there ^ so that the day is attempted to be printed, things will explode. as in, game crashes violently. If you comment the line out that is trying to print the day and just print the word "time", everything is happy.
Version
1.7.4 (Latest release)
Upcoming/master Version
im on 1.9
Discord contact info
iriv24
The text was updated successfully, but these errors were encountered:
Description
I am working off of 1.9, using the new fake RTC that was introduced. The relevant configurations are in
include/config/overworld.h
I used:#define OW_TIMES_OF_DAY GEN_LATEST
#define OW_USE_FAKE_RTC TRUE
#define OW_ALTERED_TIME_RATIO GEN_LATEST
Then in start_menu.c, the relevant lines of code are:
StringExpandPlaceholders(gStringVar4, gDayNameStringsTable[(gLocalTime.days % 7)]);
//StringExpandPlaceholders(gStringVar4, gText_ContinueMenuTime); // prints "time" word, from version before weekday was added and leaving it here in case anyone would prefer to use it
if you leave the line uncommented the way it is there ^ so that the day is attempted to be printed, things will explode. as in, game crashes violently. If you comment the line out that is trying to print the day and just print the word "time", everything is happy.
Version
1.7.4 (Latest release)
Upcoming/master Version
im on 1.9
Discord contact info
iriv24
The text was updated successfully, but these errors were encountered: