From 886fa2986a34cdcd401887df03ab5b703740d971 Mon Sep 17 00:00:00 2001 From: auria Date: Tue, 15 Mar 2011 23:55:53 +0000 Subject: [PATCH] Fixed bad OpenGL includes git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7909 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/states_screens/race_gui.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/states_screens/race_gui.cpp b/src/states_screens/race_gui.cpp index 18fd63890..886ec73d7 100644 --- a/src/states_screens/race_gui.cpp +++ b/src/states_screens/race_gui.cpp @@ -49,8 +49,11 @@ using namespace irr; #include "utils/string_utils.hpp" #include "utils/translation.hpp" +#ifdef __APPLE__ #include -#include +#else +#include +#endif /** The constructor is called before anything is attached to the scene node. * So rendering to a texture can be done here. But world is not yet fully