mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- fixed: AActor::Howl checked HowlSound for the wrong type.
This commit is contained in:
parent
8253b91d97
commit
1761da6079
1 changed files with 1 additions and 1 deletions
|
@ -3508,7 +3508,7 @@ int AActor::GetMissileDamage (int mask, int add)
|
||||||
|
|
||||||
void AActor::Howl ()
|
void AActor::Howl ()
|
||||||
{
|
{
|
||||||
FSoundID howl = IntVar(NAME_HowlSound);
|
FSoundID howl = SoundVar(NAME_HowlSound);
|
||||||
if (!S_IsActorPlayingSomething(this, CHAN_BODY, howl))
|
if (!S_IsActorPlayingSomething(this, CHAN_BODY, howl))
|
||||||
{
|
{
|
||||||
S_Sound (this, CHAN_BODY, howl, 1, ATTN_NORM);
|
S_Sound (this, CHAN_BODY, howl, 1, ATTN_NORM);
|
||||||
|
|
Loading…
Reference in a new issue