mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-26 12:12:02 +00:00
Small message fix.
This commit is contained in:
parent
a4bfaf8cf2
commit
46c0f9fe47
1 changed files with 3 additions and 3 deletions
|
@ -422,7 +422,7 @@ bool gameCardDumpNSWDBCheck(u32 crc, char *releaseName, int bufsize)
|
||||||
|
|
||||||
if (!found)
|
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 {
|
} else {
|
||||||
breaks--;
|
breaks--;
|
||||||
}
|
}
|
||||||
|
@ -435,8 +435,8 @@ bool gameCardDumpNSWDBCheck(u32 crc, char *releaseName, int bufsize)
|
||||||
|
|
||||||
xmlFreeDoc(doc);
|
xmlFreeDoc(doc);
|
||||||
} else {
|
} else {
|
||||||
snprintf(strbuf, sizeof(strbuf) / sizeof(strbuf[0]), "Failed to open and/or parse \"%s\"!", nswReleasesXmlPath);
|
snprintf(strbuf, sizeof(strbuf) / sizeof(strbuf[0]), "Error: failed to open and/or parse \"%s\"!", nswReleasesXmlPath);
|
||||||
uiDrawString(strbuf, 0, breaks * 8, 255, 255, 255);
|
uiDrawString(strbuf, 0, breaks * 8, 255, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
return found;
|
return found;
|
||||||
|
|
Loading…
Reference in a new issue