uint32 enums fixed

This commit is contained in:
withmorten 2020-12-07 01:04:23 +01:00
parent b5ffea5c6e
commit 9e2ac26a1d
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
#include "common.h" #include "common.h"
enum eSfxSample : uint32 enum eSfxSample
{ {
SFX_CAR_HORN_JEEP = 0, SFX_CAR_HORN_JEEP = 0,
SFX_CAR_HORN_BMW328, SFX_CAR_HORN_BMW328,

View File

@ -153,7 +153,7 @@ enum eWaitState {
WAITSTATE_FINISH_FLEE WAITSTATE_FINISH_FLEE
}; };
enum eObjective : uint32 { enum eObjective {
OBJECTIVE_NONE, OBJECTIVE_NONE,
OBJECTIVE_WAIT_ON_FOOT, OBJECTIVE_WAIT_ON_FOOT,
OBJECTIVE_FLEE_ON_FOOT_TILL_SAFE, OBJECTIVE_FLEE_ON_FOOT_TILL_SAFE,

View File

@ -65,7 +65,7 @@ enum tVehicleType
NUMHANDLINGS NUMHANDLINGS
}; };
enum tField : uint32 // most likely a handling field enum, never used so :shrug: enum tField // most likely a handling field enum, never used so :shrug:
{ {
}; };