mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-12 21:31:57 +00:00
- fixed arguments order for ZMusic_Start() function
This commit is contained in:
parent
82c4750710
commit
d1786bc0c0
1 changed files with 1 additions and 1 deletions
|
@ -424,7 +424,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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue