- fix debug assertion, cleanup vestigial A_PlaySound addition

This commit is contained in:
Rachael Alexanderson 2020-03-03 22:50:01 -05:00
commit 178cf40428
4 changed files with 5 additions and 5 deletions

View file

@ -179,7 +179,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(AActor, A_PlaySound, A_PlaySound)
PARAM_FLOAT(attenuation);
PARAM_BOOL(local);
PARAM_FLOAT(pitch);
A_PlaySound(self, soundid, channel, volume, looping, attenuation, local, pitch, 0.0f);
A_PlaySound(self, soundid, channel, volume, looping, attenuation, local, pitch);
return 0;
}