From 00a3a898e303495cf2839b75916f22792982d1b9 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sat, 21 Jan 2012 17:30:21 +0100 Subject: [PATCH] fix bad use of "" vs string_null --- qcsrc/menu/xonotic/dialog_settings_input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.2