Update RTC persistent check

For compatibility with libdragon commit 4b3d8d4bcf
This commit is contained in:
Robin Jones 2025-03-20 23:18:25 +00:00
parent 01691687f4
commit 44ba424df6

View File

@ -127,7 +127,7 @@ static void process (menu_t *menu) {
adjust_rtc_time( &rtc_tm, -1 );
}
else if (menu->actions.options) { // R button = save
if(rtc_is_persistent()) {
if( rtc_get_source() == RTC_SOURCE_JOYBUS && rtc_is_source_available( RTC_SOURCE_DD ) ) {
struct timeval new_time = { .tv_sec = mktime(&rtc_tm) };
int res = settimeofday(&new_time, NULL);