1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-22 18:26:39 +00:00

Small message fix.

This commit is contained in:
Pablo Curiel 2018-06-25 21:42:25 -04:00
parent a4bfaf8cf2
commit 46c0f9fe47

View file

@ -422,7 +422,7 @@ bool gameCardDumpNSWDBCheck(u32 crc, char *releaseName, int bufsize)
if (!found)
{
uiDrawString("No matches found in XML document!", 0, breaks * 8, 255, 0, 0);
uiDrawString("No matches found in XML document! This could either be a bad dump or an undumped cartridge.", 0, breaks * 8, 255, 0, 0);
} else {
breaks--;
}
@ -435,8 +435,8 @@ bool gameCardDumpNSWDBCheck(u32 crc, char *releaseName, int bufsize)
xmlFreeDoc(doc);
} else {
snprintf(strbuf, sizeof(strbuf) / sizeof(strbuf[0]), "Failed to open and/or parse \"%s\"!", nswReleasesXmlPath);
uiDrawString(strbuf, 0, breaks * 8, 255, 255, 255);
snprintf(strbuf, sizeof(strbuf) / sizeof(strbuf[0]), "Error: failed to open and/or parse \"%s\"!", nswReleasesXmlPath);
uiDrawString(strbuf, 0, breaks * 8, 255, 0, 0);
}
return found;