- fix broken win32 compile (but no freetype2 support yet)

This commit is contained in:
Mark Vejvoda
2011-06-06 22:37:27 +00:00
parent c808a5661a
commit df178e5eb4
4 changed files with 14 additions and 2 deletions

View File

@@ -34,7 +34,9 @@ typedef Uint32 uint32;
typedef Sint64 int64;
typedef Uint64 uint64;
#ifndef WIN32
typedef uint8 byte;
#endif
}}//end namespace

View File

@@ -33,6 +33,8 @@ typedef unsigned int uint32;
typedef long long int64;
typedef unsigned long long uint64;
typedef uint8 byte;
}}//end namespace
#endif

View File

@@ -20,13 +20,13 @@
#include <algorithm>
//#include "string_utils.h"
using namespace Shared::Util;
using namespace Shared::Graphics::Gl;
#endif
#include "leak_dumper.h"
using namespace std;
using namespace Shared::Util;
using namespace Shared::Graphics::Gl;
namespace Shared{ namespace Graphics{