mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
cfg: Set sound mode to stereo by default. (#7268)
This commit is contained in:
parent
71b88c4c1f
commit
f177433d41
@ -224,7 +224,7 @@ class SettingsActivity : AppCompatActivity(), SettingsActivityView {
|
|||||||
setUsername("CITRA")
|
setUsername("CITRA")
|
||||||
setBirthday(3, 25)
|
setBirthday(3, 25)
|
||||||
setSystemLanguage(1)
|
setSystemLanguage(1)
|
||||||
setSoundOutputMode(2)
|
setSoundOutputMode(1)
|
||||||
setCountryCode(49)
|
setCountryCode(49)
|
||||||
setPlayCoins(42)
|
setPlayCoins(42)
|
||||||
}
|
}
|
||||||
|
@ -874,7 +874,7 @@ class SettingsFragmentPresenter(private val fragmentView: SettingsFragmentView)
|
|||||||
override val section = null
|
override val section = null
|
||||||
override val isRuntimeEditable = false
|
override val isRuntimeEditable = false
|
||||||
override val valueAsString = int.toString()
|
override val valueAsString = int.toString()
|
||||||
override val defaultValue = 2
|
override val defaultValue = 1
|
||||||
}
|
}
|
||||||
add(
|
add(
|
||||||
SingleChoiceSetting(
|
SingleChoiceSetting(
|
||||||
|
@ -33,7 +33,7 @@ constexpr std::array<float, 8> DEFAULT_STEREO_CAMERA_SETTINGS = {
|
|||||||
10.0f, 5.0f, 55.58000183105469f, 21.56999969482422f,
|
10.0f, 5.0f, 55.58000183105469f, 21.56999969482422f,
|
||||||
};
|
};
|
||||||
constexpr New3dsBacklightControls DEFAULT_NEW_3DS_BACKLIGHT_CONTROLS{{0, 0, 0, 0}, 0, {0, 0, 0}};
|
constexpr New3dsBacklightControls DEFAULT_NEW_3DS_BACKLIGHT_CONTROLS{{0, 0, 0, 0}, 0, {0, 0, 0}};
|
||||||
constexpr u8 DEFAULT_SOUND_OUTPUT_MODE = SOUND_SURROUND;
|
constexpr u8 DEFAULT_SOUND_OUTPUT_MODE = SOUND_STEREO;
|
||||||
// NOTE: These two are placeholders. They are randomly generated elsewhere, rather than using fixed
|
// NOTE: These two are placeholders. They are randomly generated elsewhere, rather than using fixed
|
||||||
// constants.
|
// constants.
|
||||||
constexpr u64_le DEFAULT_CONSOLE_ID = 0;
|
constexpr u64_le DEFAULT_CONSOLE_ID = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user