replace default bsnes with bsnes115

This commit is contained in:
Morilli 2022-12-02 20:21:21 +01:00
parent 6174398fb4
commit ae11dcc6af
2 changed files with 3 additions and 3 deletions

View File

@ -4394,7 +4394,7 @@ namespace BizHawk.Client.EmuHawk
return Emulator switch
{
Snes9x => PromptToSwitchCore(CoreNames.Snes9X, CoreNames.Bsnes, () => Config.PreferredCores[VSystemID.Raw.SNES] = CoreNames.Bsnes),
Snes9x => PromptToSwitchCore(CoreNames.Snes9X, CoreNames.Bsnes115, () => Config.PreferredCores[VSystemID.Raw.SNES] = CoreNames.Bsnes115),
QuickNES => PromptToSwitchCore(CoreNames.QuickNes, CoreNames.NesHawk, () => Config.PreferredCores[VSystemID.Raw.NES] = CoreNames.NesHawk),
HyperNyma => PromptToSwitchCore(CoreNames.HyperNyma, CoreNames.TurboNyma, () => Config.PreferredCores[VSystemID.Raw.PCE] = CoreNames.TurboNyma),
_ => true

View File

@ -155,7 +155,7 @@ namespace BizHawk.Client.EmuHawk
_config.Savestates.CompressionLevelNormal = 5;
// SNES
_config.PreferredCores[VSystemID.Raw.SNES] = CoreNames.Bsnes;
_config.PreferredCores[VSystemID.Raw.SNES] = CoreNames.Bsnes115;
// SMS
var smsSettings = GetSyncSettings<SMS, SMS.SmsSyncSettings>();
@ -199,7 +199,7 @@ namespace BizHawk.Client.EmuHawk
PutSyncSettings<N64>(n64Settings);
// SNES
_config.PreferredCores[VSystemID.Raw.SNES] = CoreNames.Bsnes;
_config.PreferredCores[VSystemID.Raw.SNES] = CoreNames.Bsnes115;
// Genesis
var genesisSettings = GetSyncSettings<GPGX, GPGX.GPGXSyncSettings>();