mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 15:02:39 +00:00
- fixed: The Heresiarch's check for full rotation of its balls depended on BAM semantics so it should still be checked as such to ensure consistent behavior.
This commit is contained in:
parent
a199fe1825
commit
f27c762319
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_SorcBallOrbit)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (deltaangle(angle, prevangle) < 0 && (parent->args[4]==SORCBALL_TERMINAL_SPEED))
|
if ( angle.BAMs() < prevangle.BAMs() && (parent->args[4]==SORCBALL_TERMINAL_SPEED))
|
||||||
{
|
{
|
||||||
parent->args[1]++; // Bump rotation counter
|
parent->args[1]++; // Bump rotation counter
|
||||||
// Completed full rotation - make woosh sound
|
// Completed full rotation - make woosh sound
|
||||||
|
|
Loading…
Reference in a new issue