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 <windows.h>... whatever, just rename the variable :p
This commit is contained in:
Sally Coolatta 2020-09-14 12:47:55 -04:00
parent 6f8d246db8
commit e8c91b6727

View file

@ -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;