Skip to content

Commit

Permalink
widen the special field in FBoomArgs.
Browse files Browse the repository at this point in the history
This code still assumed that all special types fit into 8 bits which is no longer the case.
  • Loading branch information
prof-hastig authored and coelckers committed Oct 25, 2023
1 parent 66a9043 commit 7bbe7a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gamedata/xlat/xlat.h
Expand Up @@ -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;
} ;

Expand Down

0 comments on commit 7bbe7a5

Please sign in to comment.