Add OSD message for Volume Hotkeys

This pr adds an OnScreenDisplay message when you use the Volume hotkeys.
Just to have visual feedback.
This commit is contained in:
master0fdisaster
2018-06-05 23:34:28 +02:00
parent 21898a0c5a
commit 7a90ea2752
4 changed files with 43 additions and 17 deletions

View File

@ -200,16 +200,6 @@ void HotkeyScheduler::Run()
if (IsHotkey(HK_READ_ONLY_MODE))
emit ToggleReadOnlyMode();
// Volume
if (IsHotkey(HK_VOLUME_DOWN))
settings.DecreaseVolume(3);
if (IsHotkey(HK_VOLUME_UP))
settings.IncreaseVolume(3);
if (IsHotkey(HK_VOLUME_TOGGLE_MUTE))
AudioCommon::ToggleMuteVolume();
// Wiimote
if (SConfig::GetInstance().m_bt_passthrough_enabled)
{
@ -251,6 +241,25 @@ void HotkeyScheduler::Run()
g_renderer->ShowOSDMessage(message);
};
// Volume
if (IsHotkey(HK_VOLUME_DOWN))
{
show_msg(OSDMessage::VolumeChanged);
settings.DecreaseVolume(3);
}
if (IsHotkey(HK_VOLUME_UP))
{
show_msg(OSDMessage::VolumeChanged);
settings.IncreaseVolume(3);
}
if (IsHotkey(HK_VOLUME_TOGGLE_MUTE))
{
show_msg(OSDMessage::VolumeChanged);
AudioCommon::ToggleMuteVolume();
}
// Graphics
const auto efb_scale = Config::Get(Config::GFX_EFB_SCALE);