remove unused loop argument from sound instance wrapper

main
cosmonaut 2021-11-08 08:45:24 -08:00
parent 57d3ffbc0e
commit 6ef79855ab
1 changed files with 53 additions and 53 deletions

View File

@ -100,7 +100,7 @@ function SoundInstance(_soundInstanceID) constructor
soundInstanceID = _soundInstanceID;
// Plays the sound or resumes from pause.
static Play = function(loop = false)
static Play = function()
{
FAudioGMS_SoundInstance_Play(soundInstanceID);
}