mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 23:33:00 +00:00
- unused macro removal.
This commit is contained in:
parent
7351a76404
commit
4d35adbcd6
1 changed files with 2 additions and 4 deletions
|
@ -542,9 +542,6 @@ FRandom pr_acs ("ACS");
|
||||||
// potentially get used with recursive functions.
|
// potentially get used with recursive functions.
|
||||||
#define STACK_SIZE 4096
|
#define STACK_SIZE 4096
|
||||||
|
|
||||||
#define CLAMPCOLOR(c) (EColorRange)((unsigned)(c) >= NUM_TEXT_COLORS ? CR_UNTRANSLATED : (c))
|
|
||||||
#define LANGREGIONMASK MAKE_ID(0,0,0xff,0xff)
|
|
||||||
|
|
||||||
// HUD message flags
|
// HUD message flags
|
||||||
#define HUDMSG_LOG (0x80000000)
|
#define HUDMSG_LOG (0x80000000)
|
||||||
#define HUDMSG_COLORSTRING (0x40000000)
|
#define HUDMSG_COLORSTRING (0x40000000)
|
||||||
|
@ -8654,7 +8651,8 @@ scriptwait:
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
color = CLAMPCOLOR(Stack[optstart-4]);
|
auto c = Stack[optstart - 4];
|
||||||
|
color = (EColorRange)((unsigned)(c) >= NUM_TEXT_COLORS ? CR_UNTRANSLATED : (c));
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (type & 0xFF)
|
switch (type & 0xFF)
|
||||||
|
|
Loading…
Reference in a new issue