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
|
||||
NOASM ?= 0
|
||||
LINKED_GTK ?= 0
|
||||
BUILD32_ON_64 ?= 1
|
||||
BUILD32_ON_64 ?= 0
|
||||
|
||||
# Debugging options
|
||||
# RELEASE - 1 = no debugging
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#define __compat_h__
|
||||
|
||||
#ifndef UNREFERENCED_PARAMETER
|
||||
#define UNREFERENCED_PARAMETER(x) x=x
|
||||
#define UNREFERENCED_PARAMETER(x) x=x
|
||||
#endif
|
||||
|
||||
// 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 * bglGetQueryivARB)(GLenum target, 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
|
||||
extern void (APIENTRY * bgluTessBeginContour) (GLUtesselator* tess);
|
||||
|
|
|
@ -426,12 +426,10 @@ static void DoUserDef(int iSet, int lLabelID, int lVar2)
|
|||
case USERDEFS_SCREEN_SIZE:
|
||||
if (iSet)
|
||||
{
|
||||
if (ud.screen_size != lValue)
|
||||
{
|
||||
if (ud.screen_size != lValue)
|
||||
{
|
||||
ud.screen_size = lValue;
|
||||
vscrn();
|
||||
}
|
||||
ud.screen_size = lValue;
|
||||
vscrn();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue