mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@663 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
de9731692f
commit
a598f36502
4 changed files with 6 additions and 8 deletions
|
@ -19,7 +19,7 @@ POLYMOST ?= 1
|
||||||
USE_OPENGL ?= 1
|
USE_OPENGL ?= 1
|
||||||
NOASM ?= 0
|
NOASM ?= 0
|
||||||
LINKED_GTK ?= 0
|
LINKED_GTK ?= 0
|
||||||
BUILD32_ON_64 ?= 1
|
BUILD32_ON_64 ?= 0
|
||||||
|
|
||||||
# Debugging options
|
# Debugging options
|
||||||
# RELEASE - 1 = no debugging
|
# RELEASE - 1 = no debugging
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#define __compat_h__
|
#define __compat_h__
|
||||||
|
|
||||||
#ifndef UNREFERENCED_PARAMETER
|
#ifndef UNREFERENCED_PARAMETER
|
||||||
#define UNREFERENCED_PARAMETER(x) x=x
|
#define UNREFERENCED_PARAMETER(x) x=x
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// This gives us access to 'intptr_t' and 'uintptr_t', which are
|
// This gives us access to 'intptr_t' and 'uintptr_t', which are
|
||||||
|
|
|
@ -183,7 +183,7 @@ extern void (APIENTRY * bglBeginQueryARB)(GLenum target, GLuint id);
|
||||||
extern void (APIENTRY * bglEndQueryARB)(GLenum target);
|
extern void (APIENTRY * bglEndQueryARB)(GLenum target);
|
||||||
extern void (APIENTRY * bglGetQueryivARB)(GLenum target, GLenum pname, GLint *params);
|
extern void (APIENTRY * bglGetQueryivARB)(GLenum target, GLenum pname, GLint *params);
|
||||||
extern void (APIENTRY * bglGetQueryObjectivARB)(GLuint id, GLenum pname, GLint *params);
|
extern void (APIENTRY * bglGetQueryObjectivARB)(GLuint id, GLenum pname, GLint *params);
|
||||||
extern void (APIENTRY * bglGetQueryObjectuivARB)(uint id, GLenum pname, GLuint *params);
|
extern void (APIENTRY * bglGetQueryObjectuivARB)(GLuint id, GLenum pname, GLuint *params);
|
||||||
|
|
||||||
// GLU
|
// GLU
|
||||||
extern void (APIENTRY * bgluTessBeginContour) (GLUtesselator* tess);
|
extern void (APIENTRY * bgluTessBeginContour) (GLUtesselator* tess);
|
||||||
|
|
|
@ -425,14 +425,12 @@ static void DoUserDef(int iSet, int lLabelID, int lVar2)
|
||||||
|
|
||||||
case USERDEFS_SCREEN_SIZE:
|
case USERDEFS_SCREEN_SIZE:
|
||||||
if (iSet)
|
if (iSet)
|
||||||
{
|
|
||||||
{
|
{
|
||||||
if (ud.screen_size != lValue)
|
if (ud.screen_size != lValue)
|
||||||
{
|
{
|
||||||
ud.screen_size = lValue;
|
ud.screen_size = lValue;
|
||||||
vscrn();
|
vscrn();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SetGameVarID(lVar2, ud.screen_size, g_i, g_p);
|
SetGameVarID(lVar2, ud.screen_size, g_i, g_p);
|
||||||
|
|
Loading…
Reference in a new issue