mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 04:41:23 +00:00
Fix macro expansion warning Sryder got
This commit is contained in:
parent
4f8665c785
commit
4faaa932ec
1 changed files with 3 additions and 2 deletions
|
@ -820,12 +820,13 @@ static INT32 K_KartGetItemOdds(UINT8 pos, SINT8 item, fixed_t mashed, boolean sp
|
||||||
|
|
||||||
#define PLAYERSCALING (8 - (spbrush ? 2 : pingame))
|
#define PLAYERSCALING (8 - (spbrush ? 2 : pingame))
|
||||||
|
|
||||||
#define POWERITEMODDS(odds) \
|
#define POWERITEMODDS(odds) {\
|
||||||
if (franticitems) \
|
if (franticitems) \
|
||||||
odds <<= 1; \
|
odds <<= 1; \
|
||||||
odds = FixedMul(odds<<FRACBITS, FRACUNIT + ((PLAYERSCALING << FRACBITS) / 25)) >> FRACBITS; \
|
odds = FixedMul(odds<<FRACBITS, FRACUNIT + ((PLAYERSCALING << FRACBITS) / 25)) >> FRACBITS; \
|
||||||
if (mashed > 0) \
|
if (mashed > 0) \
|
||||||
odds = FixedDiv(odds<<FRACBITS, FRACUNIT + mashed) >> FRACBITS \
|
odds = FixedDiv(odds<<FRACBITS, FRACUNIT + mashed) >> FRACBITS; \
|
||||||
|
}
|
||||||
|
|
||||||
#define COOLDOWNONSTART (leveltime < (30*TICRATE)+starttime)
|
#define COOLDOWNONSTART (leveltime < (30*TICRATE)+starttime)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue