mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-31 04:50:48 +00:00
- Fixed: Vel3DFromAngle's internal function call had the pitch and angle parameters backwards:
This commit is contained in:
parent
8b19ae98ea
commit
15df231a95
1 changed files with 1 additions and 1 deletions
|
@ -8137,7 +8137,7 @@ DEFINE_ACTION_FUNCTION(AActor, Vel3DFromAngle)
|
|||
PARAM_FLOAT(speed);
|
||||
PARAM_ANGLE(angle);
|
||||
PARAM_ANGLE(pitch);
|
||||
self->Vel3DFromAngle(pitch, angle, speed);
|
||||
self->Vel3DFromAngle(angle, pitch, speed);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue