mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Ensure double is not in zero or param structs for v6
This commit is contained in:
parent
be30a0eb19
commit
4bf37b274b
1 changed files with 1 additions and 1 deletions
|
@ -913,7 +913,6 @@ init_types (void)
|
|||
};
|
||||
static struct_def_t param_struct[] = {
|
||||
{"string_val", &type_string},
|
||||
{"double_val", &type_double},
|
||||
{"float_val", &type_float},
|
||||
{"vector_val", &type_vector},
|
||||
{"entity_val", &type_entity},
|
||||
|
@ -925,6 +924,7 @@ init_types (void)
|
|||
{"integer_val", &type_integer},
|
||||
{"uinteger_val", &type_uinteger},
|
||||
{"quaternion_val", &type_quaternion},
|
||||
{"double_val", &type_double},
|
||||
{0, 0}
|
||||
};
|
||||
static struct_def_t vector_struct[] = {
|
||||
|
|
Loading…
Reference in a new issue