shithub: cstory

Download patch

ref: 9fd95e720c02acd58cca55ed00882d5ccad09f5e
parent: ba9ccec945e9083cd52c884bf8a1621ff3e22d3f
author: Clownacy <Clownacy@users.noreply.github.com>
date: Mon Apr 6 09:49:57 EDT 2020

Whoops, remove a leftover `std::`

--- a/src/Backends/Audio/SoftwareMixer.cpp
+++ b/src/Backends/Audio/SoftwareMixer.cpp
@@ -169,7 +169,7 @@
 				{
 					if (sound->looping)
 					{
-						sound->position = std::fmod(sound->position, (double)sound->frames);
+						sound->position = fmod(sound->position, (double)sound->frames);
 					}
 					else
 					{