- fixed missing QuakeEx parameter conversion.

This commit is contained in:
Christoph Oelckers 2016-07-12 19:57:32 +02:00
parent bdeb233849
commit 79264cb8cd
1 changed files with 2 additions and 2 deletions

View File

@ -5712,8 +5712,8 @@ doplaysound: if (funcIndex == ACSF_PlayActorSound)
argCount > 11 ? ACSToDouble(args[11]) : 1.0,
argCount > 12 ? args[12] : 0,
argCount > 13 ? args[13] : 0,
argCount > 14 ? args[14] : 0,
argCount > 15 ? args[15] : 0);
argCount > 14 ? ACSToDouble(args[14]) : 0,
argCount > 15 ? ACSToDouble(args[15]) : 0);
}
case ACSF_SetLineActivation: