- fixed arguments order for ZMusic_Start() function

This commit is contained in:
alexey.lysiuk 2020-02-22 13:08:10 +02:00
parent 5ee864ab5b
commit 45617043f8
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ bool S_ChangeMusic (const char *musicname, int order, bool looping, bool force)
}
else if (!ZMusic_IsPlaying(mus_playing.handle))
{
if (!ZMusic_Start(mus_playing.handle, looping, order))
if (!ZMusic_Start(mus_playing.handle, order, looping))
{
Printf("Unable to start %s: %s\n", mus_playing.name.GetChars(), ZMusic_GetLastError());
}