mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Qt: Implement missing settings
This commit is contained in:
@ -159,18 +159,18 @@ void HotkeyScheduler::Run()
|
||||
if (IsHotkey(HK_EXIT))
|
||||
emit ExitHotkey();
|
||||
|
||||
auto& settings = Settings::Instance();
|
||||
|
||||
// Volume
|
||||
if (IsHotkey(HK_VOLUME_DOWN))
|
||||
AudioCommon::DecreaseVolume(3);
|
||||
settings.DecreaseVolume(3);
|
||||
|
||||
if (IsHotkey(HK_VOLUME_UP))
|
||||
AudioCommon::IncreaseVolume(3);
|
||||
settings.IncreaseVolume(3);
|
||||
|
||||
if (IsHotkey(HK_VOLUME_TOGGLE_MUTE))
|
||||
AudioCommon::ToggleMuteVolume();
|
||||
|
||||
auto& settings = Settings::Instance();
|
||||
|
||||
// Wiimote
|
||||
if (settings.IsBluetoothPassthroughEnabled())
|
||||
{
|
||||
|
Reference in New Issue
Block a user