]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - r_sprites.c
Rename qboolean to qbool
[xonotic/darkplaces.git] / r_sprites.c
index d01c99a47c0549984daa755d7f5d12c3a1ff79b0..4118a5b7f99ef6180676d59e712d13eef9e834c3 100644 (file)
@@ -181,7 +181,7 @@ static void R_RotateSprite(const mspriteframe_t *frame, vec3_t origin, vec3_t le
                // Now that we've kicked center-hotspotted sprites, rotate using the appropriate matrix :)
 
                // determine the angle of a sprite, we could only do that once though and
-               // add a `qboolean initialized' to the mspriteframe_t struct... let's get the direction vector of it :)
+               // add a `qbool initialized' to the mspriteframe_t struct... let's get the direction vector of it :)
 
                angle = atan(dir[1] / dir[0]) * 180.0f/M_PI;