You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
semi colon
This commit is contained in:
@@ -776,7 +776,7 @@ void vec3f_get_dist_and_angle(Vec3f from, Vec3f to, f32 *dist, s16 *pitch, s16 *
|
||||
register f32 xs = x * x;
|
||||
register f32 zs = z * z;
|
||||
|
||||
*dist = sqrtf(xs + zs + y * y)
|
||||
*dist = sqrtf(xs + zs + y * y);
|
||||
*pitch = atan2s(sqrtf(xs + zs), y);
|
||||
*yaw = atan2s(z, x);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user