mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-27 11:40:52 +00:00
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:
parent
6f8d246db8
commit
e8c91b6727
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue