diff -r 007813b81f1b -r 3d14950641a4 hedgewars/uGame.pas --- a/hedgewars/uGame.pas Wed Aug 08 14:10:32 2018 +0200 +++ b/hedgewars/uGame.pas Wed Aug 08 14:38:54 2018 +0200 @@ -87,22 +87,22 @@ j:= Volume; i:= ChangeVolume(cVolumeDelta); if (not cIsSoundEnabled) or (isAudioMuted and (j<>i)) then - AddCaption(trmsg[sidMute], cLightGrayColor, capgrpVolume) + AddCaption(trmsg[sidMute], capcolSetting, capgrpVolume) else if not isAudioMuted then begin s:= ansistring(inttostr(i)); - AddCaption(FormatA(trmsg[sidVolume], s), cLightGrayColor, capgrpVolume) + AddCaption(FormatA(trmsg[sidVolume], s), capcolSetting, capgrpVolume) end end else if cMuteToggle then begin MuteAudio; if isAudioMuted then - AddCaption(trmsg[sidMute], cLightGrayColor, capgrpVolume) + AddCaption(trmsg[sidMute], capcolSetting, capgrpVolume) else begin s:= ansistring(inttostr(GetVolumePercent())); - AddCaption(FormatA(trmsg[sidVolume], s), cLightGrayColor, capgrpVolume); + AddCaption(FormatA(trmsg[sidVolume], s), capcolSetting, capgrpVolume); end; cMuteToggle:= false; end;