]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sbar.c
Rename qboolean to qbool
[xonotic/darkplaces.git] / sbar.c
diff --git a/sbar.c b/sbar.c
index 288965a27669a045fb42db8c2853193ed970e768..7a488ea4da40b80689a893817c0561423969ee71 100644 (file)
--- a/sbar.c
+++ b/sbar.c
@@ -53,7 +53,7 @@ cachepic_t *sb_face_quad;
 cachepic_t *sb_face_invuln;
 cachepic_t *sb_face_invis_invuln;
 
-qboolean sb_showscores;
+qbool sb_showscores;
 
 int sb_lines;                  // scan lines to draw
 
@@ -1112,7 +1112,7 @@ void Sbar_ShowFPS(void)
        char topspeedstring[48];
        char texstring[MAX_QPATH];
        char entstring[32];
-       qboolean red = false;
+       qbool red = false;
        soundstring[0] = 0;
        fpsstring[0] = 0;
        timedemostring1[0] = 0;
@@ -1176,7 +1176,7 @@ void Sbar_ShowFPS(void)
                }
                if (cl_showtopspeed.integer)
                {
-                       qboolean topspeed_latched = false, topspeedxy_latched = false;
+                       qbool topspeed_latched = false, topspeedxy_latched = false;
                        get_showspeed_unit(cl_showtopspeed.integer, &f, &unit);
                        if (speed >= topspeed || current_time - top_time > 3)
                        {
@@ -1798,7 +1798,7 @@ Sbar_DeathmatchOverlay
 static float Sbar_PrintScoreboardItem(scoreboard_t *s, float x, float y)
 {
        int minutes;
-       qboolean myself = false;
+       qbool myself = false;
        unsigned char *c;
        char vabuf[1024];
        minutes = (int)((cl.intermission ? cl.completed_time - s->qw_entertime : cl.time - s->qw_entertime) / 60.0);