mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
make the opcode a 16 bit enum to help with debugging (I hope this doesn't
cause problems on weird archs).
This commit is contained in:
parent
58782333a9
commit
e3055837fa
1 changed files with 1 additions and 1 deletions
|
@ -270,7 +270,7 @@ opcode_t *PR_Opcode (short opcode);
|
|||
void PR_Opcode_Init (void);
|
||||
|
||||
typedef struct statement_s {
|
||||
unsigned short op;
|
||||
pr_opcode_e op:16;
|
||||
unsigned short a,b,c;
|
||||
} dstatement_t;
|
||||
|
||||
|
|
Loading…
Reference in a new issue