I just ran the update tp 7.82.

I tend to code the full statement (no shortcuts)
so I coded (x coder and easier to debug at 3 am if '== 1'
is included)

wh2 = snd_play(w_xtable, svol,0);
while(snd_playing(wh2) == 1) {wait(1);}

This previously worked, so I was surprised when it
stopped working after the update.
The below (no '==1' does work however.

wh2 = snd_play(w_xtable, svol,0);
while(snd_playing(wh2)) {wait(1);}

Both are I think correct, and if it is a bug can
see many problems!