- Fixed compilation on non-Windows systems by removing dependency on src/Linux/platform.h
This commit is contained in:
parent
119bcd7686
commit
276ca5b75b
5 changed files with 22 additions and 5 deletions
|
|
@ -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)
|
||||
|
||||
//===========================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue