- Fixed compilation on non-Windows systems by removing dependency on src/Linux/platform.h

This commit is contained in:
Braden Obrzut 2013-06-26 19:01:00 -04:00
commit 276ca5b75b
5 changed files with 22 additions and 5 deletions

View file

@ -56,6 +56,19 @@
#include "gl/textures/gl_material.h"
#include "gl/utility/gl_templates.h"
#ifndef _WIN32
struct POINT {
SDWORD x;
SDWORD y;
};
struct RECT {
SDWORD left;
SDWORD top;
SDWORD right;
SDWORD bottom;
};
#endif
EXTERN_CVAR(Bool, gl_vid_compatibility)
//===========================================================================