mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2025-01-06 11:13:01 +05:00
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:
parent
915f227caf
commit
90e7a8d1d3
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue