X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fxonotic%2Fslider_decibels.c;h=24edb4cb91b6deef418b7d17053411e4912a578b;hb=2734bbf35415e405424df669e2288cbee7797a4e;hp=f517a0bc605a0560a4bbd195b7e7b81128bfb34d;hpb=b6f62c6f3d422c93567261eaa7f62411c77d4dac;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/xonotic/slider_decibels.c b/qcsrc/menu/xonotic/slider_decibels.c index f517a0bc6..24edb4cb9 100644 --- a/qcsrc/menu/xonotic/slider_decibels.c +++ b/qcsrc/menu/xonotic/slider_decibels.c @@ -47,9 +47,9 @@ void XonoticDecibelsSlider_saveCvars(entity me) string XonoticDecibelsSlider_valueToText(entity me, float v) { if(v < -33) - return ZCTX(_("VOL^OFF")); + return CTX(_("VOL^OFF")); else if(v >= -0.1) - return ZCTX(_("VOL^MAX")); + return CTX(_("VOL^MAX")); return sprintf(_("%s dB"), SUPER(XonoticDecibelsSlider).valueToText(me, v)); }