From e3055837fa3dbc701f72ff22650e1fa2398d2cf0 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 9 Jun 2002 16:27:31 +0000 Subject: [PATCH] make the opcode a 16 bit enum to help with debugging (I hope this doesn't cause problems on weird archs). --- include/QF/pr_comp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/QF/pr_comp.h b/include/QF/pr_comp.h index 182af6cb3..b062d3a61 100644 --- a/include/QF/pr_comp.h +++ b/include/QF/pr_comp.h @@ -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;