mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-25 04:01:43 +00:00
widen the special field in FBoomArgs.
This code still assumed that all special types fit into 8 bits which is no longer the case.
This commit is contained in:
parent
66a904348b
commit
7bbe7a53e9
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ struct FBoomTranslator
|
|||
{
|
||||
uint16_t FirstLinetype = 0;
|
||||
uint16_t LastLinetype = 0;
|
||||
uint8_t NewSpecial = 0;
|
||||
uint16_t NewSpecial = 0;
|
||||
TArray<FBoomArg> Args;
|
||||
} ;
|
||||
|
||||
|
|
Loading…
Reference in a new issue