Tas Profile - fix mistake of snes9x being the snes core instead of bsnes. Also turn off GBC in GBA setting, after discussing with tasvideos staff, this setting is specifically preferred to be false.
This commit is contained in:
parent
cf58dd8ad1
commit
63f9de42a7
|
@ -197,7 +197,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
PutSyncSettings<N64>(n64Settings);
|
||||
|
||||
// SNES
|
||||
_config.PreferredCores["SNES"] = CoreNames.Snes9X;
|
||||
_config.PreferredCores["SNES"] = CoreNames.Bsnes;
|
||||
|
||||
// Genesis
|
||||
var genesisSettings = GetSyncSettings<GPGX, GPGX.GPGXSyncSettings>();
|
||||
|
@ -224,7 +224,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
_config.PreferredCores["GBC"] = CoreNames.Gambatte;
|
||||
var s = GetSyncSettings<Gameboy, Gameboy.GambatteSyncSettings>();
|
||||
s.EnableBIOS = true;
|
||||
s.GBACGB = true;
|
||||
s.GBACGB = false;
|
||||
PutSyncSettings<Gameboy>(s);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue