mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-06 07:51:18 +00:00
give the opcodes a type
This commit is contained in:
parent
09118bc01e
commit
bd4abbab06
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ typedef enum {
|
||||||
#define RESERVED_OFS 28
|
#define RESERVED_OFS 28
|
||||||
|
|
||||||
|
|
||||||
enum {
|
typedef enum {
|
||||||
OP_DONE,
|
OP_DONE,
|
||||||
OP_MUL_F,
|
OP_MUL_F,
|
||||||
OP_MUL_V,
|
OP_MUL_V,
|
||||||
|
@ -129,7 +129,7 @@ enum {
|
||||||
OP_BITOR,
|
OP_BITOR,
|
||||||
|
|
||||||
OP_ADD_S,
|
OP_ADD_S,
|
||||||
};
|
} pr_opcode_e;
|
||||||
|
|
||||||
|
|
||||||
typedef struct statement_s
|
typedef struct statement_s
|
||||||
|
|
Loading…
Reference in a new issue