mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed arguments order for ZMusic_Start() function
This commit is contained in:
parent
5ee864ab5b
commit
45617043f8
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue