mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 10:51:42 +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)
|
// (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;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue