• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[JASS] Sounds and Leaking in JASS

Status
Not open for further replies.
Level 9
Joined
Nov 28, 2008
Messages
704
How much do sounds leakk when the JASS function for them is used? Which functions leak?

For example, creating blobal sound handles in the sound editor.. you can just use PlaySound(gg_snd_ohai)... does this leak? Then there is PlaySound("Ohai.wav")... I assume that leaks a handle. If I just copied blizzards function and added a set soundHandle to null, would that be fine?

Thanks for any answers in advance.

JASS:
    function PlaySoundNL takes string soundName returns nothing
        local sound soundHandle = CreateSound(soundName, false, false, true, 12700, 12700, "")
        call StartSound(soundHandle)
        call KillSoundWhenDone(soundHandle)
        set soundHandle = null //Blizzards function does not do this.
    endfunction

Does THAT leak?
 
Status
Not open for further replies.
Top