From e8c91b67276aa53d7a4f908e10dd2f6afbceedbf Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Mon, 14 Sep 2020 12:47:55 -0400 Subject: [PATCH] Rename the "small" variable to "isSmall" Reported by MK, apparently "small" is considered a data type for some systems. After a little bit of research, apparently it can happen when including ... whatever, just rename the variable :p --- src/m_menu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/m_menu.c b/src/m_menu.c index 79b8d53d..480c887b 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -11300,12 +11300,12 @@ static const char *M_GetDiscordName(discordRequest_t *r) } // (this goes in k_hud.c when merged into v2) -static void M_DrawSticker(INT32 x, INT32 y, INT32 width, INT32 flags, boolean small) +static void M_DrawSticker(INT32 x, INT32 y, INT32 width, INT32 flags, boolean isSmall) { patch_t *stickerEnd; INT32 height; - - if (small == true) + + if (isSmall == true) { stickerEnd = W_CachePatchName("K_STIKE2", PU_CACHE); height = 6;