From: Rudolf Polzer Date: Sat, 21 Jan 2012 16:30:21 +0000 (+0100) Subject: fix bad use of "" vs string_null X-Git-Tag: xonotic-v0.6.0~105 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=00a3a898e303495cf2839b75916f22792982d1b9;p=xonotic%2Fxonotic-data.pk3dir.git fix bad use of "" vs string_null --- diff --git a/qcsrc/menu/xonotic/dialog_settings_input.c b/qcsrc/menu/xonotic/dialog_settings_input.c index 6e15da11b..96bf5e5c6 100644 --- a/qcsrc/menu/xonotic/dialog_settings_input.c +++ b/qcsrc/menu/xonotic/dialog_settings_input.c @@ -53,7 +53,7 @@ void XonoticInputSettingsTab_fill(entity me) me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "joystick", _("Use joystick input"))); else { - me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "", _("Use joystick input"))); + me.TD(me, 1, 3, e = makeXonoticCheckBox(0, string_null, _("Use joystick input"))); e.disabled = 1; // the option is never available in this case, just there for show } me.TR(me); @@ -77,7 +77,7 @@ void XonoticInputSettingsTab_fill(entity me) me.TD(me, 1, 2.8, e = makeXonoticCheckBox(0, "apple_mouse_noaccel", _("Disable system mouse acceleration"))); else { - me.TD(me, 1, 2.8, e = makeXonoticCheckBox(0, "", _("Disable system mouse acceleration"))); + me.TD(me, 1, 2.8, e = makeXonoticCheckBox(0, string_null, _("Disable system mouse acceleration"))); e.disabled = 1; // the option is never available in this case, just there for show } me.TR(me);