- fixed default values for S_ChangeMusic

https://forum.zdoom.org/viewtopic.php?t=62323#p1076849
This commit is contained in:
alexey.lysiuk 2018-10-22 08:19:56 +03:00 committed by GitHub
parent 89059a2acc
commit 2ba6148834
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2737,8 +2737,8 @@ DEFINE_ACTION_FUNCTION(DObject, S_ChangeMusic)
PARAM_PROLOGUE;
PARAM_STRING(music);
PARAM_INT_DEF(order);
PARAM_BOOL(looping);
PARAM_BOOL(force);
PARAM_BOOL_DEF(looping);
PARAM_BOOL_DEF(force);
ACTION_RETURN_BOOL(S_ChangeMusic(music, order, looping, force));
}