Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
magcius committed Jul 14, 2024
1 parent e402425 commit dba1391
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/SSystem/SComponent/c_xyz.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ struct cXyz : Vec {
static const cXyz BaseXYZ;
~cXyz() {}
/* inlined */ cXyz() {}
cXyz(f32 x, f32 y, f32 z) {
x = x;
y = y;
z = z;
cXyz(f32 pX, f32 pY, f32 pZ) {
x = pX;
y = pY;
z = pZ;
}
cXyz(const cXyz& vec) {
x = vec.x;
Expand Down

0 comments on commit dba1391

Please sign in to comment.