mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 16:51:08 +00:00
[util] Fix incorrect type in test-mat3
Fixes make check for gcc-11
This commit is contained in:
parent
93167279fc
commit
36df16eefc
1 changed files with 2 additions and 1 deletions
|
@ -127,7 +127,8 @@ test_transform2 (const vec3_t angles, const vec3_t scale)
|
||||||
vec3_t x, y;
|
vec3_t x, y;
|
||||||
quat_t rotation;
|
quat_t rotation;
|
||||||
mat3_t mat;
|
mat3_t mat;
|
||||||
vec3_t rot, sc, sh;
|
quat_t rot;
|
||||||
|
vec3_t sc, sh;
|
||||||
|
|
||||||
VectorCopy (v, x);
|
VectorCopy (v, x);
|
||||||
AngleQuat (angles, rotation);
|
AngleQuat (angles, rotation);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue