Romloader: Add `DontTryOtherCores` config setting

If set, only the first preference core (whether it be through gamedb or preferredcore or priority or whatever) will be tried, and a failure for it will immediately fail the entire thing.  This is mostly a developer feature to aid in debugging.
This commit is contained in:
nattthebear 2021-05-16 11:57:30 -04:00
parent e0a357f68d
commit bc21f296a0
2 changed files with 3 additions and 1 deletions

View File

@ -399,7 +399,7 @@ namespace BizHawk.Client.Common
}
catch (Exception e)
{
if (e is MissingFirmwareException || e.InnerException is MissingFirmwareException)
if (_config.DontTryOtherCores || e is MissingFirmwareException || e.InnerException is MissingFirmwareException)
throw;
exceptions.Add(e);
}

View File

@ -337,6 +337,8 @@ namespace BizHawk.Client.Common
["SGX"] = CoreNames.TurboNyma
};
public bool DontTryOtherCores { get; set; }
// ReSharper disable once UnusedMember.Global
public string LastWrittenFrom { get; set; } = VersionInfo.MainVersion;