From: Samual Date: Sun, 21 Aug 2011 05:22:29 +0000 (-0400) Subject: Update the string for hud_postprocessing effects in settings dialog X-Git-Tag: xonotic-v0.5.0~106^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5012ecaad6c46ecad7bad8d6ac985cea391aa674;p=xonotic%2Fxonotic-data.pk3dir.git Update the string for hud_postprocessing effects in settings dialog --- diff --git a/qcsrc/menu/xonotic/dialog_settings_effects.c b/qcsrc/menu/xonotic/dialog_settings_effects.c index 23cb6a3b9..585b20796 100644 --- a/qcsrc/menu/xonotic/dialog_settings_effects.c +++ b/qcsrc/menu/xonotic/dialog_settings_effects.c @@ -186,8 +186,9 @@ void XonoticEffectsSettingsTab_fill(entity me) e.savedValue = 0.5; // default me.TD(me, 1, 2, s); me.TR(me); - me.TD(me, 1, 2, e = makeXonoticCheckBoxEx(0.5, 0, "hud_postprocessing_maxbluralpha", _("Damage & water blur"))); - me.TD(me, 1, 1, e = makeXonoticCheckBoxEx(0.5, 0, "hud_powerup", _("Powerup sharpen"))); + e = makeXonoticCheckBoxEx(0.5, 0, "hud_postprocessing_maxbluralpha", _("Blur and sharpen postprocessing")); + makeMulti(e, "hud_powerup"); + me.TD(me, 1, 2, e); me.gotoRC(me, me.rows - 1, 0); me.TD(me, 1, me.columns, makeXonoticCommandButton(_("Apply immediately"), '0 0 0', "vid_restart", COMMANDBUTTON_APPLY));