Skip to content

Commit

Permalink
Correctly identify development tool bios and also identify Namco syst…
Browse files Browse the repository at this point in the history
…em 246/256
  • Loading branch information
israpps authored Feb 20, 2024
1 parent 645dc3f commit 5ff2972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/ps2/BiosTools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5ff2972

Please sign in to comment.