From 57ce5b4fb0989c18c9937030111788d5f194bdf0 Mon Sep 17 00:00:00 2001 From: Andrei Drexler Date: Mon, 7 Oct 2024 08:34:46 +0200 Subject: [PATCH] Add missing return type --- Quake/sv_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/sv_main.c b/Quake/sv_main.c index 6b629bd58..89631c5ec 100644 --- a/Quake/sv_main.c +++ b/Quake/sv_main.c @@ -1714,7 +1714,7 @@ typedef enum SV_MapCheckThresh ================ */ -static SV_MapCheckThresh (int current, int target) +static mapcheck_t SV_MapCheckThresh (int current, int target) { if (current <= 0) return MAPCHECK_FAILED;