mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 07:11:42 +00:00
remove the use of 'typedef enum' without an indentifier
This commit is contained in:
parent
6fe03e8c7f
commit
7b5d5bc663
4 changed files with 5 additions and 5 deletions
|
@ -200,7 +200,7 @@ typedef enum {
|
||||||
} weaponstate_t;
|
} weaponstate_t;
|
||||||
|
|
||||||
|
|
||||||
typedef enum {
|
enum {
|
||||||
FORCE_MASTERY_UNINITIATED,
|
FORCE_MASTERY_UNINITIATED,
|
||||||
FORCE_MASTERY_INITIATE,
|
FORCE_MASTERY_INITIATE,
|
||||||
FORCE_MASTERY_PADAWAN,
|
FORCE_MASTERY_PADAWAN,
|
||||||
|
|
|
@ -57,7 +57,7 @@ typedef enum //# material_e
|
||||||
|
|
||||||
#define SP_PODIUM_MODEL "models/mapobjects/podium/podium4.md3"
|
#define SP_PODIUM_MODEL "models/mapobjects/podium/podium4.md3"
|
||||||
|
|
||||||
typedef enum
|
enum
|
||||||
{
|
{
|
||||||
HL_NONE = 0,
|
HL_NONE = 0,
|
||||||
HL_FOOT_RT,
|
HL_FOOT_RT,
|
||||||
|
|
|
@ -469,7 +469,7 @@ typedef enum
|
||||||
NUM_FORCE_POWERS
|
NUM_FORCE_POWERS
|
||||||
} forcePowers_t;
|
} forcePowers_t;
|
||||||
|
|
||||||
typedef enum
|
enum
|
||||||
{
|
{
|
||||||
FORCE_LEVEL_0,
|
FORCE_LEVEL_0,
|
||||||
FORCE_LEVEL_1,
|
FORCE_LEVEL_1,
|
||||||
|
@ -2051,7 +2051,7 @@ typedef struct {
|
||||||
|
|
||||||
// For ghoul2 axis use
|
// For ghoul2 axis use
|
||||||
|
|
||||||
typedef enum Eorientations
|
enum Eorientations
|
||||||
{
|
{
|
||||||
ORIGIN = 0,
|
ORIGIN = 0,
|
||||||
POSITIVE_X,
|
POSITIVE_X,
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#define FORCE_LIGHTNING_RADIUS 300
|
#define FORCE_LIGHTNING_RADIUS 300
|
||||||
#define MAX_DRAIN_DISTANCE 512
|
#define MAX_DRAIN_DISTANCE 512
|
||||||
|
|
||||||
typedef enum
|
enum
|
||||||
{
|
{
|
||||||
FJ_FORWARD,
|
FJ_FORWARD,
|
||||||
FJ_BACKWARD,
|
FJ_BACKWARD,
|
||||||
|
|
Loading…
Reference in a new issue