SilentPatch: Add missing cmath header include

It's required for the modf() function (and it isn't implicitly
included on MinGW GCC)
This commit is contained in:
Echo J 2024-11-07 00:59:21 +02:00
parent 37a53c384a
commit b386f216e4

View file

@ -1,6 +1,8 @@
#ifndef __TIMER #ifndef __TIMER
#define __TIMER #define __TIMER
#include <cmath>
class CTimer class CTimer
{ {
public: public:
@ -16,4 +18,4 @@ public:
static void Update_SilentPatch(); static void Update_SilentPatch();
}; };
#endif #endif