We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Day of the week is incorrectly calculated starting in January 2012. (e.g. SUN for Jan 2nd)
Reviewed algorithm from http://web.archive.org/web/20090309071604/http://klausler.com/new-dayofweek.html
Changed BASE_YEAR in logic\date.c: < #define BASE_YEAR 2001 // not a leap year, so no need to add 1
#define BASE_YEAR 1984
And it appears to correctly calculate the Dotw now.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Day of the week is incorrectly calculated starting in January 2012. (e.g. SUN for Jan 2nd)
Reviewed algorithm from http://web.archive.org/web/20090309071604/http://klausler.com/new-dayofweek.html
Changed BASE_YEAR in logic\date.c:
< #define BASE_YEAR 2001 // not a leap year, so no need to add 1
And it appears to correctly calculate the Dotw now.
The text was updated successfully, but these errors were encountered: