]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Make it possible to show the maximized radar in any case (ignore hud_panel_radar...
authorterencehill <piuntn@gmail.com>
Thu, 15 Sep 2011 21:03:43 +0000 (23:03 +0200)
committerterencehill <piuntn@gmail.com>
Thu, 15 Sep 2011 21:03:43 +0000 (23:03 +0200)
qcsrc/client/hud.qc

index 9d66e9a1718290390329d4ebd5a56d85f5533365..6b5ec6c17367d07a8ca1d26441effc84d220268f 100644 (file)
@@ -2302,8 +2302,11 @@ void HUD_Radar(void)
 {
        if (!autocvar__hud_configure)
        {
-               if (autocvar_hud_panel_radar == 0 && autocvar_hud_panel_radar_maximized == 0) return;
-               if (autocvar_hud_panel_radar != 2 && !teamplay) return;
+               if (!autocvar_hud_panel_radar_maximized)
+               {
+                       if (autocvar_hud_panel_radar == 0) return;
+                       if (autocvar_hud_panel_radar != 2 && !teamplay) return;
+               }
        }
        else
                hud_configure_active_panel = HUD_PANEL_RADAR;