mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-06-01 17:12:15 +00:00
Fix some mis-versioned opcodes.
Many of the quaternion opcodes were marked as being available for id progs. oops
This commit is contained in:
parent
efaef89c5f
commit
0a22a98b60
1 changed files with 12 additions and 12 deletions
|
@ -118,20 +118,20 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{"*", "mul.q", OP_MUL_Q, false,
|
{"*", "mul.q", OP_MUL_Q, false,
|
||||||
ev_quat, ev_quat, ev_quat,
|
ev_quat, ev_quat, ev_quat,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
{"*", "mul.fq", OP_MUL_FQ, false,
|
{"*", "mul.fq", OP_MUL_FQ, false,
|
||||||
ev_float, ev_quat, ev_quat,
|
ev_float, ev_quat, ev_quat,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
{"*", "mul.qf", OP_MUL_QF, false,
|
{"*", "mul.qf", OP_MUL_QF, false,
|
||||||
ev_quat, ev_float, ev_quat,
|
ev_quat, ev_float, ev_quat,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
|
|
||||||
{"~", "conj.q", OP_CONJ_Q, false,
|
{"~", "conj.q", OP_CONJ_Q, false,
|
||||||
ev_quat, ev_invalid, ev_quat,
|
ev_quat, ev_invalid, ev_quat,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
|
|
||||||
{"/", "div.f", OP_DIV_F, false,
|
{"/", "div.f", OP_DIV_F, false,
|
||||||
|
@ -149,7 +149,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{"+", "add.q", OP_ADD_Q, false,
|
{"+", "add.q", OP_ADD_Q, false,
|
||||||
ev_quat, ev_quat, ev_quat,
|
ev_quat, ev_quat, ev_quat,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
{"+", "add.s", OP_ADD_S, false,
|
{"+", "add.s", OP_ADD_S, false,
|
||||||
ev_string, ev_string, ev_string,
|
ev_string, ev_string, ev_string,
|
||||||
|
@ -166,7 +166,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{"-", "sub.q", OP_SUB_Q, false,
|
{"-", "sub.q", OP_SUB_Q, false,
|
||||||
ev_quat, ev_quat, ev_quat,
|
ev_quat, ev_quat, ev_quat,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
|
|
||||||
{"==", "eq.f", OP_EQ_F, false,
|
{"==", "eq.f", OP_EQ_F, false,
|
||||||
|
@ -179,7 +179,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{"==", "eq.q", OP_EQ_Q, false,
|
{"==", "eq.q", OP_EQ_Q, false,
|
||||||
ev_quat, ev_quat, ev_integer,
|
ev_quat, ev_quat, ev_integer,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
{"==", "eq.s", OP_EQ_S, false,
|
{"==", "eq.s", OP_EQ_S, false,
|
||||||
ev_string, ev_string, ev_integer,
|
ev_string, ev_string, ev_integer,
|
||||||
|
@ -204,7 +204,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{"!=", "ne.q", OP_NE_Q, false,
|
{"!=", "ne.q", OP_NE_Q, false,
|
||||||
ev_quat, ev_quat, ev_integer,
|
ev_quat, ev_quat, ev_integer,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
},
|
},
|
||||||
{"!=", "ne.s", OP_NE_S, false,
|
{"!=", "ne.s", OP_NE_S, false,
|
||||||
ev_string, ev_string, ev_integer,
|
ev_string, ev_string, ev_integer,
|
||||||
|
@ -264,7 +264,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{".", "load.q", OP_LOAD_Q, false,
|
{".", "load.q", OP_LOAD_Q, false,
|
||||||
ev_entity, ev_field, ev_quat,
|
ev_entity, ev_field, ev_quat,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
"%Ga.%Gb(%Ec), %gc",
|
"%Ga.%Gb(%Ec), %gc",
|
||||||
},
|
},
|
||||||
{".", "load.s", OP_LOAD_S, false,
|
{".", "load.s", OP_LOAD_S, false,
|
||||||
|
@ -481,7 +481,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{"=", "store.q", OP_STORE_Q, true,
|
{"=", "store.q", OP_STORE_Q, true,
|
||||||
ev_quat, ev_quat, ev_invalid,
|
ev_quat, ev_quat, ev_invalid,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
"%Ga, %gb",
|
"%Ga, %gb",
|
||||||
},
|
},
|
||||||
{"=", "store.s", OP_STORE_S, true,
|
{"=", "store.s", OP_STORE_S, true,
|
||||||
|
@ -527,7 +527,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{".=", "storep.q", OP_STOREP_Q, true,
|
{".=", "storep.q", OP_STOREP_Q, true,
|
||||||
ev_quat, ev_pointer, ev_invalid,
|
ev_quat, ev_pointer, ev_invalid,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
"%Ga, *%Gb",
|
"%Ga, *%Gb",
|
||||||
},
|
},
|
||||||
{".=", "storep.s", OP_STOREP_S, true,
|
{".=", "storep.s", OP_STOREP_S, true,
|
||||||
|
@ -677,7 +677,7 @@ VISIBLE opcode_t pr_opcodes[] = {
|
||||||
},
|
},
|
||||||
{"!", "not.q", OP_NOT_Q, false,
|
{"!", "not.q", OP_NOT_Q, false,
|
||||||
ev_quat, ev_invalid, ev_integer,
|
ev_quat, ev_invalid, ev_integer,
|
||||||
PROG_ID_VERSION,
|
PROG_VERSION,
|
||||||
"%Ga, %gc",
|
"%Ga, %gc",
|
||||||
},
|
},
|
||||||
{"!", "not.s", OP_NOT_S, false,
|
{"!", "not.s", OP_NOT_S, false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue