From bf9702cdca44ba741908993326cea8485d5afa3e Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Tue, 7 Jun 2011 03:38:38 +0000 Subject: [PATCH] - bugfix for missing include on win32 --- source/shared_lib/sources/graphics/gl/font_textFTGL.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/shared_lib/sources/graphics/gl/font_textFTGL.cpp b/source/shared_lib/sources/graphics/gl/font_textFTGL.cpp index f7962f401..a88e7419d 100644 --- a/source/shared_lib/sources/graphics/gl/font_textFTGL.cpp +++ b/source/shared_lib/sources/graphics/gl/font_textFTGL.cpp @@ -23,9 +23,11 @@ #include #endif +#include "platform_common.h" #include "util.h" using namespace std; using namespace Shared::Util; +using namespace Shared::PlatformCommon; namespace Shared{ namespace Graphics{ namespace Gl{