Whoops, remove a leftover std::

This commit is contained in:
Clownacy 2020-04-06 13:49:57 +01:00
parent ba9ccec945
commit 9fd95e720c

View file

@ -169,7 +169,7 @@ ATTRIBUTE_HOT void Mixer_MixSounds(float *stream, unsigned int frames_total)
{
if (sound->looping)
{
sound->position = std::fmod(sound->position, (double)sound->frames);
sound->position = fmod(sound->position, (double)sound->frames);
}
else
{