]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Save hud_panel_racesplits_lines
authorDes <xon@damianv.com.ar>
Mon, 16 Sep 2024 14:26:50 +0000 (11:26 -0300)
committerDes <xon@damianv.com.ar>
Mon, 16 Sep 2024 14:26:50 +0000 (11:26 -0300)
qcsrc/client/hud/panel/racesplits.qc

index 9b12439b8eef30d4de6b6e20bfcc3817256e6861..facb0dfee56b3c18b703991de9d1e1880a1fcc3d 100644 (file)
@@ -11,6 +11,7 @@ void HUD_RaceSplits_Export(int fh)
 {
        // allow saving cvars that aesthetically change the panel into hud skin files
        HUD_Write_Cvar("hud_panel_racesplits_flip");
+       HUD_Write_Cvar("hud_panel_racesplits_lines");
 }
 
 vector RaceSplits_drawstring(string s, vector pos, vector sz, float a, vector fontsize)
@@ -58,7 +59,7 @@ void HUD_RaceSplits()
        }
 
        #define HUD_RACESPLITS_MAX_NRLINES 50 // feels like twice more than enough
-       int nrlines = autocvar_hud_panel_racesplits_lines <= HUD_RACESPLITS_MAX_NRLINES ? autocvar_hud_panel_racesplits_lines : HUD_RACESPLITS_MAX_NRLINES;
+       int nrlines = min(HUD_RACESPLITS_MAX_NRLINES, autocvar_hud_panel_racesplits_lines);
        vector fontsize = '0.8 1 0' * (mySize.y / (nrlines+2));
        string s;
        if(!autocvar__hud_configure)