git-svn-id: https://svn.eduke32.com/eduke32@663 1a8010ca-5511-0410-912e-c29ae57300e0

This commit is contained in:
terminx 2008-03-26 09:28:21 +00:00
parent de9731692f
commit a598f36502
4 changed files with 6 additions and 8 deletions

View file

@ -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

View file

@ -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

View file

@ -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);

View file

@ -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;
}