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
The following line in the original code leads to an error if dates before 1582 are supplied (which is fine) 290 IF Y-1582 <0 THEN 1300
However it means the day of week calculation is performed on days in 1582, but before 15 October 1582 (the date the Gregorian calendar started).
I think the test should be changed to check that the supplied date is on or after 15 October 1582.
The text was updated successfully, but these errors were encountered:
I am currently looking at tidying up the Javascript implementation, but I am unsure whether I should unilaterally fix this on one implementation.
Sorry, something went wrong.
sure, if it is a bug in the original code please put a note in the readme.md in the game folder!
readme.md
One of my todo items is to add a "translator / port notes" section to the readme.md of each game..
No branches or pull requests
The following line in the original code leads to an error if dates before 1582 are supplied (which is fine)
290 IF Y-1582 <0 THEN 1300
However it means the day of week calculation is performed on days in 1582, but before 15 October 1582 (the date the Gregorian calendar started).
I think the test should be changed to check that the supplied date is on or after 15 October 1582.
The text was updated successfully, but these errors were encountered: