mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-21 23:59:18 +01:00
TWN region code !?
This commit is contained in:
parent
53072c83fe
commit
bc99919c45
@ -647,7 +647,7 @@ int Menu_BatchProcessWads(fatFile *files, int fileCount, char *inFilePath, int i
|
|||||||
|
|
||||||
if (thisFile->installstate < 0)
|
if (thisFile->installstate < 0)
|
||||||
{
|
{
|
||||||
printf(" %.40s ", thisFile->filename);
|
printf(" %.40s: ", thisFile->filename);
|
||||||
i++;
|
i++;
|
||||||
|
|
||||||
|
|
||||||
@ -657,7 +657,10 @@ int Menu_BatchProcessWads(fatFile *files, int fileCount, char *inFilePath, int i
|
|||||||
case -996: puts("Read error"); break;
|
case -996: puts("Read error"); break;
|
||||||
case -998: puts("Skipped"); break;
|
case -998: puts("Skipped"); break;
|
||||||
case -999: puts("BRICK BLOCKED"); break;
|
case -999: puts("BRICK BLOCKED"); break;
|
||||||
case -1036: puts("Needed IOS missing"); break;
|
case -1010: puts("Wii System memory full!");
|
||||||
|
case -1022: puts("Content hash mismatch"); break;
|
||||||
|
case -1035: puts("Newer version already installed"); break;
|
||||||
|
case -1036: puts("Needed IOS missing!"); break;
|
||||||
case -2011: puts("No trucha bug?"); break;
|
case -2011: puts("No trucha bug?"); break;
|
||||||
/*
|
/*
|
||||||
* from libogc.
|
* from libogc.
|
||||||
|
@ -187,6 +187,8 @@ static bool GetRegionFromTXT(char* region)
|
|||||||
|
|
||||||
if (!strncmp(start, "JPN", 3))
|
if (!strncmp(start, "JPN", 3))
|
||||||
*region = 'J';
|
*region = 'J';
|
||||||
|
else if (!strncmp(start, "TWN", 3))
|
||||||
|
*region = 'J';
|
||||||
else if (!strncmp(start, "USA", 3))
|
else if (!strncmp(start, "USA", 3))
|
||||||
*region = 'U';
|
*region = 'U';
|
||||||
else if (!strncmp(start, "EUR", 3))
|
else if (!strncmp(start, "EUR", 3))
|
||||||
|
Loading…
Reference in New Issue
Block a user