Skip to content

Commit

Permalink
Add new flag combo
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlamin committed May 29, 2024
1 parent 1e49593 commit 2469af4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions code/C#/DBDefsDumper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1097,6 +1097,7 @@ public static (string, int) TypeToT(int type, FieldFlags flag)
return ("int", 8);
case 0 | FieldFlags.f_unsigned | 0 | 0:
case 0 | FieldFlags.f_unsigned | FieldFlags.f_maybe_compressed | 0:
case 0 | FieldFlags.f_unsigned | FieldFlags.f_maybe_compressed | FieldFlags.f_maybe_fk:
return ("uint", 8);
default:
throw new Exception("Unknown flag combination!");
Expand Down

0 comments on commit 2469af4

Please sign in to comment.