Skip to content

Commit

Permalink
Fixed bugs in config panel
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed Aug 12, 2024
1 parent 876e0f4 commit 0fb54ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Emulator/Components/Memory/Memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ Memory::loadExt(MediaFile &file)
{
try {

RomFile &extFile = dynamic_cast<RomFile &>(file);
ExtendedRomFile &extFile = dynamic_cast<ExtendedRomFile &>(file);

// Allocate memory
allocExt((i32)extFile.data.size);
Expand Down
4 changes: 1 addition & 3 deletions GUI/Dialogs/Configuration/CompatibilityConf.swift
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,7 @@ extension ConfigurationController {
case 1:

// Accurate
defaults.set(.DENISE_CLX_SPR_SPR, true)
defaults.set(.DENISE_CLX_SPR_PLF, true)
defaults.set(.DENISE_CLX_PLF_PLF, true)
break

case 2:

Expand Down
2 changes: 1 addition & 1 deletion GUI/XIB files/Configuration.xib
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ DQ
<menuItem title="Revert to..." hidden="YES" id="3px-lD-sYg">
<attributedString key="attributedTitle"/>
</menuItem>
<menuItem title="Standard Settings" id="QSQ-lh-vgh">
<menuItem title="Standard Settings" hidden="YES" id="QSQ-lh-vgh">
<attributedString key="attributedTitle"/>
</menuItem>
<menuItem title="High Accuracy Settings" tag="1" id="PcB-Zc-YDR"/>
Expand Down

0 comments on commit 0fb54ae

Please sign in to comment.