behold! ive have discovered the Gamecube Disc CRC database! only im not brave enough to post a link...
nevertheless, my code looks like:
Code:
const char *getRegionString(char region)
{
map < char, const char *>regions;
regions['D'] = "Deutschland/PAL"; // The Lord of the Rings, The Third Age (G3AD)
regions['E'] = "USA/NTSC"; // Bust a Move 3000 (G3SE)
regions['F'] = "France/SECAM"; // Tales of Symphonia (GQSF)
regions['G'] = "Germany/PAL"; // MasterPhW
regions['P'] = "Europe/PAL"; // The Legend Of Zelda The Wind Waker (GZLP)
regions['J'] = "Japan/NTSC"; // Kururin Squash (GKQJ)
regions['U'] = "Austalia/PAL"; // The Legend of Zelda: Ocarina of Time (D43U)
regions['X'] = "Unknown"; // Harry Potter and the Chamber of Secrets (GHSX)
regions['Y'] = "Unknown"; // Harry Potter and the Chamber of Secrets (GHSY)
map < char, const char *>::iterator it = regions.find(region);
return it == regions.end()? "Unknown" : (*it).second;
}
any guesses for the unkowns?
my eyes dont see any germany serials yet...