Skip to content

Commit

Permalink
Broadcast override for South Park Rally
Browse files Browse the repository at this point in the history
  • Loading branch information
bslenul authored and flyinghead committed Dec 17, 2023
1 parent bccdc66 commit 99dc278
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/emulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,12 +275,14 @@ static void loadSpecialSettings()
if (prod_id == "T-9707N" // San Francisco Rush 2049 (US)
|| prod_id == "MK-51146" // Sega Smash Pack - Volume 1
|| prod_id == "T-9702D-50" // Hydro Thunder (PAL)
|| prod_id == "T41601N") // Elemental Gimmick Gear (US)
|| prod_id == "T41601N" // Elemental Gimmick Gear (US)
|| prod_id == "T-8116N") // South Park Rally (US)
{
NOTICE_LOG(BOOT, "Forcing NTSC broadcasting");
config::Broadcast.override(0);
}
else if (prod_id == "T-9709D-50") // San Francisco Rush 2049 (EU)
else if (prod_id == "T-9709D-50" // San Francisco Rush 2049 (EU)
|| prod_id == "T-8112D-50") // South Park Rally (EU)
{
NOTICE_LOG(BOOT, "Forcing PAL broadcasting");
config::Broadcast.override(1);
Expand Down

0 comments on commit 99dc278

Please sign in to comment.