Change lockout packet variable to signed

This commit is contained in:
hg
2020-06-30 20:53:05 -04:00
parent 70161aecc4
commit e99528fe73
15 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -4145,7 +4145,7 @@ struct ExpeditionLockoutTimerEntry_Struct
{
/*000*/ char expedition_name[1]; // variable length, null terminated, max 0x80 (128)
/*000*/ uint32 seconds_remaining;
/*000*/ uint32 event_type; // seen -1 (0xffffffff) for replay timers and 1 for event timers
/*000*/ int32 event_type; // seen -1 (0xffffffff) for replay timers and 1 for event timers
/*000*/ char event_name[1]; // variable length, null terminated, max 0x100 (256)
};