Skip to content

Commit

Permalink
Correct misspelling of interpreter (#1625)
Browse files Browse the repository at this point in the history
Interpreter was spelled incorrectly in the option name, and the setting
name stored in the settings.bml file.
  • Loading branch information
remutro authored Aug 23, 2024
1 parent ace4115 commit 3cd82c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion desktop-ui/settings/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ auto OptionSettings::construct() -> void {
homebrewModeLayout.setAlignment(1).setPadding(12_sx, 0);
homebrewModeHint.setText("Activate core-specific features to help homebrew developers").setFont(Font().setSize(7.0)).setForegroundColor(SystemColor::Sublabel);

forceInterpreter.setText("Force Intepreter").setChecked(settings.general.forceInterpreter).onToggle([&] {
forceInterpreter.setText("Force Interpreter").setChecked(settings.general.forceInterpreter).onToggle([&] {
settings.general.forceInterpreter = forceInterpreter.checked();
});
forceInterpreterLayout.setAlignment(1).setPadding(12_sx, 0);
Expand Down
2 changes: 1 addition & 1 deletion desktop-ui/settings/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ auto Settings::process(bool load) -> void {
bind(boolean, "General/RunAhead", general.runAhead);
bind(boolean, "General/AutoSaveMemory", general.autoSaveMemory);
bind(boolean, "General/HomebrewMode", general.homebrewMode);
bind(boolean, "General/ForceIntepreter", general.forceInterpreter);
bind(boolean, "General/ForceInterpreter", general.forceInterpreter);

bind(natural, "Rewind/Length", rewind.length);
bind(natural, "Rewind/Frequency", rewind.frequency);
Expand Down

0 comments on commit 3cd82c8

Please sign in to comment.