From 2b58f4119f8aa1b1bf313026b6d1410af0d4f4a8 Mon Sep 17 00:00:00 2001 From: cypress Date: Wed, 4 Sep 2024 20:46:12 -0700 Subject: [PATCH] Don't use qtrue/qfalse for onground --- source/sv_user.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sv_user.c b/source/sv_user.c index 884e307..74fdeb4 100644 --- a/source/sv_user.c +++ b/source/sv_user.c @@ -385,9 +385,9 @@ void SV_ClientThink (void) return; if ((int)sv_player->v.flags & FL_ONGROUND) - onground = qtrue; + onground = true; else - onground = qfalse; + onground = false; origin = sv_player->v.origin; velocity = sv_player->v.velocity;