From: Derk-Jan Hartman Date: Mon, 25 Jul 2005 19:58:01 +0000 (+0000) Subject: * change hotkeys OSD message from 0-100% to 0-400% X-Git-Tag: 0.8.4~1156 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=15de5e20fa5f4301927576fa6cae7758d6742dde;p=vlc * change hotkeys OSD message from 0-100% to 0-400% --- diff --git a/modules/control/hotkeys.c b/modules/control/hotkeys.c index 2df34fc6aa..21d7b4f387 100644 --- a/modules/control/hotkeys.c +++ b/modules/control/hotkeys.c @@ -784,8 +784,8 @@ static void DisplayVolume( intf_thread_t *p_intf, vout_thread_t *p_vout, } else { - vout_OSDMessage( p_vout, VOLUME_TEXT_CHAN, "Vol %d%%", - 2*i_vol*100/AOUT_VOLUME_MAX ); + vout_OSDMessage( p_vout, VOLUME_TEXT_CHAN, "Volume %d%%", + i_vol*400/AOUT_VOLUME_MAX ); } }