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
On AmigaOS systems this likely means the timer will never fire. On AROS 68k based systems this triggers a bug in the VBLANK timer stopping all timers throughout from firing, ultimately ending in intuition deadlock!
The text was updated successfully, but these errors were encountered:
In CheckABookBirthdays() AddressBook.c
The time for the next check is calculated as a relative time, but is submitted via RestartTimer() with the absolute time flag set.
ie
RestartTimer(TIMER_CHECKBIRTHDAYS, nextTV.Seconds, nextTV.Microseconds, TRUE);
should be
RestartTimer(TIMER_CHECKBIRTHDAYS, nextTV.Seconds, nextTV.Microseconds, FALSE);
On AmigaOS systems this likely means the timer will never fire. On AROS 68k based systems this triggers a bug in the VBLANK timer stopping all timers throughout from firing, ultimately ending in intuition deadlock!
The text was updated successfully, but these errors were encountered: