- remove addition from deprecated A_PlaySound

This commit is contained in:
Rachael Alexanderson 2020-03-02 02:17:12 -05:00 committed by Christoph Oelckers
commit 3d3a29979b
2 changed files with 2 additions and 3 deletions

View file

@ -193,8 +193,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(AActor, A_StartSound, A_StartSound)
PARAM_FLOAT(volume);
PARAM_FLOAT(attenuation);
PARAM_FLOAT(pitch);
PARAM_FLOAT(startTime);
A_StartSound(self, soundid, channel, flags, volume, attenuation, pitch, startTime);
A_StartSound(self, soundid, channel, flags, volume, attenuation, pitch, 0.0f);
return 0;
}