Skip to content
Permalink
Browse files
Merge pull request #8317 from CookiePLMonster/muted-percent
Fix "Muted%" OSD message when muting sounds via a hotkey
  • Loading branch information
JosJuice committed Aug 17, 2019
2 parents 0a7265f + 12ac784 commit 7520306
Showing 1 changed file with 1 addition and 2 deletions.
@@ -302,8 +302,7 @@ void HotkeyScheduler::Run()
OSD::AddMessage(std::string("Volume: ") +
(SConfig::GetInstance().m_IsMuted ?
"Muted" :
std::to_string(SConfig::GetInstance().m_Volume)) +
"%");
std::to_string(SConfig::GetInstance().m_Volume) + "%"));
};

// Volume

0 comments on commit 7520306

Please sign in to comment.