typo lmao

main
cosmonaut 2021-11-09 15:37:57 -08:00
parent 0e04346b8c
commit 6edd9ebc94
1 changed files with 3 additions and 3 deletions

View File

@ -614,7 +614,7 @@ static void SetPanMatrixCoefficients(FAudioGMS_SoundInstance *instance)
} }
} }
static void FAudioGMS_INTERNAl_SoundInstance_ApplyPan(FAudioGMS_SoundInstance* instance) static void FAudioGMS_INTERNAL_SoundInstance_ApplyPan(FAudioGMS_SoundInstance* instance)
{ {
SetPanMatrixCoefficients(instance); SetPanMatrixCoefficients(instance);
@ -631,7 +631,7 @@ static void FAudioGMS_INTERNAL_SoundInstance_SetPan(FAudioGMS_SoundInstance *ins
{ {
pan = SDL_max(-1.0, SDL_min(1.0, pan)); pan = SDL_max(-1.0, SDL_min(1.0, pan));
instance->pan = pan; instance->pan = pan;
FAudioGMS_INTERNAl_SoundInstance_ApplyPan(instance); FAudioGMS_INTERNAL_SoundInstance_ApplyPan(instance);
} }
static void FAudioGMS_INTERNAL_SoundInstance_UpdatePitch(FAudioGMS_SoundInstance *instance) static void FAudioGMS_INTERNAL_SoundInstance_UpdatePitch(FAudioGMS_SoundInstance *instance)
@ -1932,7 +1932,7 @@ void FAudioGMS_SoundInstance_SetEffectChain(
{ {
FAudioGMS_INTERNAL_SetEffectChain(&instance->voice, effectChain, effectGain); FAudioGMS_INTERNAL_SetEffectChain(&instance->voice, effectChain, effectGain);
/* re-apply pan after setting chain because sends may have changed */ /* re-apply pan after setting chain because sends may have changed */
FAudioGMS_INTERNAl_SoundInstance_ApplyPan(instance); FAudioGMS_INTERNAL_SoundInstance_ApplyPan(instance);
} }
} }