From b271de8949f347bc30d291dc7024bd82c317fd0b Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Thu, 24 Apr 2025 18:02:29 +0700 Subject: [PATCH] replace a `bool` instance with proper `boolean` --- src/d_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_main.c b/src/d_main.c index f3acccad..06f58819 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -1656,7 +1656,7 @@ static void D_EndDoom(void) } // If so, is it from the IWAD? - bool iwad_endoom = W_IsIWADLump(W_CheckNumForName("ENDOOM")); + boolean iwad_endoom = W_IsIWADLump(W_CheckNumForName("ENDOOM")); // Does the user want to see it, in that case? if (iwad_endoom && endoom_pwad_only)