From 3bcfee7e1989c0bb71647164e032ba5eada52e9e Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 13 Nov 2016 17:32:35 -0500 Subject: [PATCH] GameTick: add cmath include and _USE_MATH_DEFINES --- Source/GameTick.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/GameTick.cpp b/Source/GameTick.cpp index 48b34b9..84a10da 100644 --- a/Source/GameTick.cpp +++ b/Source/GameTick.cpp @@ -19,6 +19,9 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +// Enable full math definitions +#define _USE_MATH_DEFINES + #if PLATFORM_UNIX #include #include @@ -27,8 +30,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #endif + #include #include +#include #include #include "Game.h" #include "openal_wrapper.h" -- 2.39.2