mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 04:11:18 +00:00
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:
commit
18adf478ca
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