Merge branch 'small-to-issmall' into 'master'

Rename the "small" variable to "isSmall"

See merge request KartKrew/Kart-Public!226
This commit is contained in:
Sal 2020-09-14 13:07:17 -04:00
commit 18adf478ca

View file

@ -11300,12 +11300,12 @@ static const char *M_GetDiscordName(discordRequest_t *r)
} }
// (this goes in k_hud.c when merged into v2) // (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; patch_t *stickerEnd;
INT32 height; INT32 height;
if (small == true) if (isSmall == true)
{ {
stickerEnd = W_CachePatchName("K_STIKE2", PU_CACHE); stickerEnd = W_CachePatchName("K_STIKE2", PU_CACHE);
height = 6; height = 6;