From: Mario Date: Wed, 18 Dec 2019 17:37:36 +0000 (+1000) Subject: Remove cl_netfps from the menu (it's not a worthwhile setting to include in the menu... X-Git-Tag: xonotic-v0.8.5~1209 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=bbf4bcd313c29aa414c5042ade2fe34bed4d5a1f;p=xonotic%2Fxonotic-data.pk3dir.git Remove cl_netfps from the menu (it's not a worthwhile setting to include in the menu, unclear as to its purpose and generally doesn't need changing anyway) --- diff --git a/qcsrc/menu/xonotic/dialog_settings_misc.qc b/qcsrc/menu/xonotic/dialog_settings_misc.qc index ca812d304..11e6ca2b5 100644 --- a/qcsrc/menu/xonotic/dialog_settings_misc.qc +++ b/qcsrc/menu/xonotic/dialog_settings_misc.qc @@ -40,10 +40,6 @@ void XonoticMiscSettingsTab_fill(entity me) e.addValue(e, _("Fast ADSL"), "40000"); e.addValue(e, _("Broadband"), "66666"); e.configureXonoticTextSliderValues(e); - me.TR(me); - me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Input packets/s:"))); - me.TD(me, 1, 2, e = makeXonoticSlider_T(30, 180, 5, "cl_netfps", - _("How many input packets to send to the server each second"))); me.TR(me); me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Server queries/s:"))); me.TD(me, 1, 2, e = makeXonoticSlider(20, 100, 10, "net_slist_queriespersecond"));