Skip to content

Commit

Permalink
disable usa bios by default when called by command line for fightcade…
Browse files Browse the repository at this point in the history
… consistency
  • Loading branch information
blueminder committed Jun 30, 2020
1 parent 4744a6c commit f8dd71f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nullDCNetplayLauncher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,14 @@ static void Main(string[] args)
{
if (File.Exists(Launcher.rootDir + "games.json"))
{
// disables usa bios for fightcade launching to ensure same region on both sides
// will add region command line option soon
var us_bios_path = Path.Combine(Launcher.rootDir, "nulldc-1-0-4-en-win", "data", "naomi_boot.bin");
if (File.Exists(us_bios_path))
{
File.Move(us_bios_path, $"{us_bios_path}.inactive");
}

romPath = Launcher.GetRomPathFromGameId(arguments["gameid"]);
if (romPath == null)
{
Expand Down

0 comments on commit f8dd71f

Please sign in to comment.