From a6a7f03b3af7f93d6352337d3494db9887763208 Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Tue, 27 Dec 2016 23:23:57 -0400 Subject: [PATCH] Fix more Windows compilation issues --HG-- branch : minor --- src/modules/graphics/Graphics.cpp | 4 ++++ src/modules/graphics/Graphics.h | 1 + 2 files changed, 5 insertions(+) diff --git a/src/modules/graphics/Graphics.cpp b/src/modules/graphics/Graphics.cpp index 19f4b5b8c..3f40823d2 100644 --- a/src/modules/graphics/Graphics.cpp +++ b/src/modules/graphics/Graphics.cpp @@ -18,10 +18,14 @@ * 3. This notice may not be removed or altered from any source distribution. **/ +// LOVE #include "Graphics.h" #include "math/MathModule.h" #include "Polyline.h" +// C++ +#include + namespace love { namespace graphics diff --git a/src/modules/graphics/Graphics.h b/src/modules/graphics/Graphics.h index 8cf634387..4d17219b4 100644 --- a/src/modules/graphics/Graphics.h +++ b/src/modules/graphics/Graphics.h @@ -22,6 +22,7 @@ #define LOVE_GRAPHICS_GRAPHICS_H // LOVE +#include "common/config.h" #include "common/Module.h" #include "common/StringMap.h" #include "StreamBuffer.h"