mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- fixed A_PlaySound() called from Dehacked
The recently added argument was missing from PlaySound code pointer handling Verified other Dehacked functions, and changed one incorrect comment
This commit is contained in:
parent
d636acb002
commit
f32aff3396
1 changed files with 2 additions and 1 deletions
|
@ -654,7 +654,7 @@ static void CreateTurnFunc(FunctionCallEmitter &emitters, int value1, int value2
|
|||
|
||||
// misc1 = angle (in degrees) (arg +0)
|
||||
static void CreateFaceFunc(FunctionCallEmitter &emitters, int value1, int value2)
|
||||
{ // A_FaceTarget
|
||||
{ // A_SetAngle
|
||||
emitters.AddParameterFloatConst(value1); // angle
|
||||
emitters.AddParameterIntConst(0); // flags
|
||||
emitters.AddParameterIntConst(AAPTR_DEFAULT); // ptr
|
||||
|
@ -679,6 +679,7 @@ static void CreatePlaySoundFunc(FunctionCallEmitter &emitters, int value1, int v
|
|||
emitters.AddParameterIntConst(false); // looping
|
||||
emitters.AddParameterFloatConst(value2 ? ATTN_NONE : ATTN_NORM); // attenuation
|
||||
emitters.AddParameterIntConst(false); // local
|
||||
emitters.AddParameterFloatConst(0.0); // pitch
|
||||
}
|
||||
|
||||
// misc1 = state, misc2 = probability
|
||||
|
|
Loading…
Reference in a new issue