From ef3c83abc082bcc9b5cd0e5f5ce30a8cc0c51c4d Mon Sep 17 00:00:00 2001 From: Lev Date: Tue, 24 Jan 2017 22:58:57 +0500 Subject: [PATCH] Move variable declarations under define that use them. --- rehlds/engine/sv_move.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rehlds/engine/sv_move.h b/rehlds/engine/sv_move.h index a244ca1..e510c35 100644 --- a/rehlds/engine/sv_move.h +++ b/rehlds/engine/sv_move.h @@ -42,11 +42,11 @@ #define c_yes (*pc_yes) #define c_no (*pc_no) -#endif // HOOK_ENGINE - extern int c_yes; extern int c_no; +#endif // HOOK_ENGINE + qboolean SV_CheckBottom(edict_t *ent); qboolean SV_movetest(edict_t *ent, vec_t *move, qboolean relink); qboolean SV_movestep(edict_t *ent, vec_t *move, qboolean relink);