Ensure double is not in zero or param structs for v6

This commit is contained in:
Bill Currie 2020-02-15 16:08:55 +09:00
parent be30a0eb19
commit 4bf37b274b

View file

@ -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[] = {