mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 04:01:31 +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
731cad7553
commit
82c492f3d7
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