cheats, fixes, cosmetic changes

This commit is contained in:
majestic 2020-08-30 13:47:12 -07:00
parent b7456c604d
commit 9f43b1988b
14 changed files with 253 additions and 44 deletions

View file

@ -494,6 +494,20 @@ UnicodeToAsciiForMemoryCard(wchar *src)
return aStr;
}
void
UnicodeMakeUpperCase(wchar *dst, wchar *src) //idk what to do with it, seems to be incorrect implementation by R*
{
while (*src != '\0') {
if (*src < 'a' || *src > 'z')
*dst = *src;
else
*dst = *src - 32;
dst++;
src++;
}
*dst = '\0';
}
void
UnicodeStrcpy(wchar *dst, const wchar *src)
{