Correct an old Nintendont version check

This commit is contained in:
wiidev 2023-01-01 17:00:24 +00:00
parent efa01533b4
commit 55e524af9f
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ int nintendontBuildDate(const char *NIN_loader_path, char *NINBuildDate)
// Search month string start position in header
char *dateStart = NULL;
const char *month[] = {"Jan ", "Feb ", "Mar ", "Apr ", "May ", "Jun ", "Jui ", "Aug ", "Sep ", "Oct ", "Nov ", "Dec "};
const char *month[] = {"Jan ", "Feb ", "Mar ", "Apr ", "May ", "Jun ", "Jul ", "Aug ", "Sep ", "Oct ", "Nov ", "Dec "};
for (u8 m = 0; m < 12; m++)
{
dateStart = strstr(NINHeader, month[m]);