Whoops, remove a leftover std::
This commit is contained in:
parent
ba9ccec945
commit
9fd95e720c
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ ATTRIBUTE_HOT void Mixer_MixSounds(float *stream, unsigned int frames_total)
|
||||||
{
|
{
|
||||||
if (sound->looping)
|
if (sound->looping)
|
||||||
{
|
{
|
||||||
sound->position = std::fmod(sound->position, (double)sound->frames);
|
sound->position = fmod(sound->position, (double)sound->frames);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue