mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 04:01:31 +00:00
Fixed copy-paste typo in SphericalCoords
This commit is contained in:
parent
5c29d88058
commit
1b7aeb35e1
1 changed files with 1 additions and 1 deletions
|
@ -2952,7 +2952,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(FLevelLocals, SphericalCoords, SphericalCoords)
|
|||
PARAM_FLOAT(viewPitch);
|
||||
PARAM_BOOL(absolute);
|
||||
DVector3 result;
|
||||
SphericalCoords(self, viewpointX, viewpointY, viewpointZ, targetX, targetY, targetZ, viewYaw, viewpointZ, absolute, &result);
|
||||
SphericalCoords(self, viewpointX, viewpointY, viewpointZ, targetX, targetY, targetZ, viewYaw, viewPitch, absolute, &result);
|
||||
ACTION_RETURN_VEC3(result);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue