mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-31 05:40:44 +00:00
- fixed: The Raven ambient sounds lost their looping flag when they were rewritten to use A_PlaySound instead of A_PlaySoundEx.
This commit is contained in:
parent
a350275bdf
commit
3f98ba9069
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ class SoundWind : Actor
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
TNT1 A 2 A_PlaySound("world/wind", CHAN_6);
|
TNT1 A 2 A_PlaySound("world/wind", CHAN_6, 1, true);
|
||||||
Loop;
|
Loop;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ class SoundWaterfall : Actor
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
TNT1 A 2 A_PlaySound("world/waterfall", CHAN_6);
|
TNT1 A 2 A_PlaySound("world/waterfall", CHAN_6, 1, true);
|
||||||
Loop;
|
Loop;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue