mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
(Android) Disabled the system volume slider in the Sound Settings menu
This commit is contained in:
parent
458560bcd9
commit
10be1e1104
|
@ -1008,9 +1008,9 @@ void GuiMenu::openSoundOptions()
|
|||
{
|
||||
auto s = new GuiSettings("SOUND SETTINGS");
|
||||
|
||||
// TODO: Hide the volume slider on macOS and BSD Unix until the volume control logic has been
|
||||
// implemented for these operating systems.
|
||||
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
|
||||
// TODO: Implement volume slider logic for macOS and Android.
|
||||
#if !defined(__APPLE__) && !defined(__ANDROID__) && !defined(__FreeBSD__) && \
|
||||
!defined(__OpenBSD__) && !defined(__NetBSD__)
|
||||
// System volume.
|
||||
// The reason to create the VolumeControl object every time instead of making it a singleton
|
||||
// is that this is the easiest way to detect new default audio devices or changes to the
|
||||
|
|
Loading…
Reference in a new issue