mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-11 01:02:16 +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
5c623f191f
commit
9f775a169d
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…
Add table
Reference in a new issue