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:
Professor Hastig 2023-10-25 08:07:35 +02:00 committed by Christoph Oelckers
parent 66a904348b
commit 7bbe7a53e9

View file

@ -82,7 +82,7 @@ struct FBoomTranslator
{ {
uint16_t FirstLinetype = 0; uint16_t FirstLinetype = 0;
uint16_t LastLinetype = 0; uint16_t LastLinetype = 0;
uint8_t NewSpecial = 0; uint16_t NewSpecial = 0;
TArray<FBoomArg> Args; TArray<FBoomArg> Args;
} ; } ;