fix compiler error

This commit is contained in:
sharkautarch 2025-01-03 21:03:38 -05:00
parent 3a1091d2cd
commit fda04e79aa
No known key found for this signature in database
GPG key ID: F270CA9462164405

View file

@ -85,8 +85,9 @@ namespace glm::detail
gcc_vec_t converted = __builtin_convertvector(fetch_vec3_as_vec4(v), Vec4);
return gcc_vec_to_data(converted);
}
} else {
} else {
gcc_vec_t converted = __builtin_convertvector(v.data, gcc_vec_t);
return gcc_vec_to_data(converted);
}
}