Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9024 from JosJuice/android-wiimote-false
Android: Fix defaults for WiimoteContinuousScanning/EnableSpeaker
  • Loading branch information
lioncash committed Aug 17, 2020
2 parents 24ff8b8 + bd9d096 commit 905df67
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -398,10 +398,10 @@ private void addWiiSettings(ArrayList<SettingsItem> sl)
sl.add(new CheckBoxSetting(SettingsFile.KEY_WII_SD_CARD_ALLOW_WRITES, Settings.SECTION_INI_CORE,
R.string.wii_sd_card_allow_writes, 0, true, wiiSDWrites));
sl.add(new CheckBoxSetting(SettingsFile.KEY_WIIMOTE_SCAN, Settings.SECTION_INI_CORE,
R.string.wiimote_scanning, R.string.wiimote_scanning_description, true,
R.string.wiimote_scanning, R.string.wiimote_scanning_description, false,
continuousScan));
sl.add(new CheckBoxSetting(SettingsFile.KEY_WIIMOTE_SPEAKER, Settings.SECTION_INI_CORE,
R.string.wiimote_speaker, R.string.wiimote_speaker_description, true, wiimoteSpeaker));
R.string.wiimote_speaker, R.string.wiimote_speaker_description, false, wiimoteSpeaker));
}

private void addAdvancedSettings(ArrayList<SettingsItem> sl)
Expand Down

0 comments on commit 905df67

Please sign in to comment.