Core: Correctly identify TOOL and Namco 246/256 bios (#10836)

This commit is contained in:
Matías Israelson 2024-02-20 21:16:07 -03:00 committed by GitHub
parent 645dc3fa9d
commit 1f584736f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ static bool LoadBiosVersion(std::FILE* fp, u32& version, std::string& descriptio
// case 'E': zone = "Russia"; region = 3; break; // Not implemented
case 'C': zone = "China"; region = 6; break;
// case 'A': zone = "Mexico"; region = 7; break; // Not implemented
case 'T': zone = "T10K"; region = 8; break;
case 'T': zone = (romver[5]=='Z') ? "COH-H" : "T10K"; region = 8; break;
case 'X': zone = "Test"; region = 9; break;
case 'P': zone = "Free"; region = 10; break;
// clang-format on