mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01:00
Fix "Muted%" OSD message when muting sounds via a hotkey
This commit is contained in:
parent
0a7265f807
commit
12ac784a41
@ -302,8 +302,7 @@ void HotkeyScheduler::Run()
|
|||||||
OSD::AddMessage(std::string("Volume: ") +
|
OSD::AddMessage(std::string("Volume: ") +
|
||||||
(SConfig::GetInstance().m_IsMuted ?
|
(SConfig::GetInstance().m_IsMuted ?
|
||||||
"Muted" :
|
"Muted" :
|
||||||
std::to_string(SConfig::GetInstance().m_Volume)) +
|
std::to_string(SConfig::GetInstance().m_Volume) + "%"));
|
||||||
"%");
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Volume
|
// Volume
|
||||||
|
Loading…
x
Reference in New Issue
Block a user