Skip to content

Commit

Permalink
bugfix: the default_prefs used ECS chipset settings (#1607)
Browse files Browse the repository at this point in the history
The default_prefs used the ECS chipset option, instead of OCS which is the default in Quickstart. This caused a difference in behavior, when loading something from the GUI vs when loading it from the command line, without opening the GUI. This is also apparent in WinUAE.

Changing this here to OCS, until we hear back from Toni, in case there is some reason for the difference.
  • Loading branch information
midwan committed Jan 23, 2025
1 parent f524cf0 commit 9fb4b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cfgfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8717,7 +8717,7 @@ void default_prefs (struct uae_prefs *p, bool reset, int type)
p->cpu_cycle_exact = false;
p->cpu_memory_cycle_exact = false;
p->blitter_cycle_exact = false;
p->chipset_mask = CSMASK_ECS_AGNUS;
p->chipset_mask = 0;
p->chipset_hr = false;
p->genlock = false;
p->genlock_image = 0;
Expand Down

0 comments on commit 9fb4b38

Please sign in to comment.