From: Samual Lenks Date: Mon, 3 Jun 2013 23:00:36 +0000 (-0400) Subject: Comment out the debug prints for panel background X-Git-Tag: xonotic-v0.7.0~13 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=c18235512d5bd92fb4b55bebeda5e0f41ac71b80;hp=8af8e36fc995bf00b3c31e0f5fa14a4dc8639587;p=xonotic%2Fxonotic-data.pk3dir.git Comment out the debug prints for panel background --- diff --git a/qcsrc/client/hud.qh b/qcsrc/client/hud.qh index 5a7e60335..db9405ef6 100644 --- a/qcsrc/client/hud.qh +++ b/qcsrc/client/hud.qh @@ -344,7 +344,7 @@ if(panel.update_time <= time) { \ strunzone(panel.current_panel_bg); \ if(panel_bg == "")\ {\ - print(sprintf("^xf08 %s panel: panel_bg is empty\n", panel.panel_name));\ + /*print(sprintf("^xf08 %s panel: panel_bg is empty\n", panel.panel_name));*/\ panel_bg = "0";\ }\ panel.current_panel_bg = strzone(panel_bg); \ @@ -361,7 +361,7 @@ if(panel.update_time <= time) { \ panel_bg = panel.current_panel_bg; \ if(panel.current_panel_bg == "")\ {\ - print(sprintf("^xf08 %s panel: panel.current_panel_bg is empty\n", panel.panel_name));\ + /*print(sprintf("^xf08 %s panel: panel.current_panel_bg is empty\n", panel.panel_name));*/\ panel_bg = "0";\ }\ panel_bg_alpha = panel.current_panel_bg_alpha; \