diff --git a/TODO b/TODO index 09e6b483..e9a3dc7d 100644 --- a/TODO +++ b/TODO @@ -1,9 +1,3 @@ -Kleine TODO-Liste: -- Version und Identifikationsstring des - Renderers anpassen -- QMAX nochmal sauber entfernen -- WIN32 und sun aus dem Game entfernen -- CTF, Rogue, Xatrix einfügen - Nightmare im Menü freischalten - Spwanflags auch für Coop per Menü anpassbar machen diff --git a/src/game/ctf/q_shared.h b/src/game/ctf/q_shared.h index 4b1518f6..50b7ee32 100644 --- a/src/game/ctf/q_shared.h +++ b/src/game/ctf/q_shared.h @@ -558,24 +558,6 @@ typedef struct #define EF_TRACKERTRAIL 0x80000000 //ROGUE -#ifdef QMAX -#define PART_GRAVITY 1 -#define PART_SPARK 2 -#define PART_ANGLED 4 -#define PART_DIRECTION 8 -#define PART_TRANS 16 -#define PART_SHADED 32 -#define PART_LIGHTNING 64 -#define PART_BEAM 128 -#define PART_LENSFLARE 256 -#define PART_DEPTHHACK_SHORT 512 -#define PART_DEPTHHACK_MID 1024 -#define PART_DEPTHHACK_LONG 2048 - -//combo flags -#define PART_DEPTHHACK (PART_DEPTHHACK_SHORT|PART_DEPTHHACK_MID|PART_DEPTHHACK_LONG) -#endif - // entity_state_t->renderfx flags #define RF_MINLIGHT 1 // allways have some light (viewmodel) #define RF_VIEWERMODEL 2 // don't draw through eyes, only mirrors diff --git a/src/game/quake2/q_shared.h b/src/game/quake2/q_shared.h index 4b1518f6..50b7ee32 100644 --- a/src/game/quake2/q_shared.h +++ b/src/game/quake2/q_shared.h @@ -558,24 +558,6 @@ typedef struct #define EF_TRACKERTRAIL 0x80000000 //ROGUE -#ifdef QMAX -#define PART_GRAVITY 1 -#define PART_SPARK 2 -#define PART_ANGLED 4 -#define PART_DIRECTION 8 -#define PART_TRANS 16 -#define PART_SHADED 32 -#define PART_LIGHTNING 64 -#define PART_BEAM 128 -#define PART_LENSFLARE 256 -#define PART_DEPTHHACK_SHORT 512 -#define PART_DEPTHHACK_MID 1024 -#define PART_DEPTHHACK_LONG 2048 - -//combo flags -#define PART_DEPTHHACK (PART_DEPTHHACK_SHORT|PART_DEPTHHACK_MID|PART_DEPTHHACK_LONG) -#endif - // entity_state_t->renderfx flags #define RF_MINLIGHT 1 // allways have some light (viewmodel) #define RF_VIEWERMODEL 2 // don't draw through eyes, only mirrors diff --git a/src/refresh/gl_rmisc.c b/src/refresh/gl_rmisc.c index 3cee589c..01ba5f2f 100644 --- a/src/refresh/gl_rmisc.c +++ b/src/refresh/gl_rmisc.c @@ -234,14 +234,6 @@ void GL_UpdateSwapInterval( void ) if ( gl_swapinterval->modified ) { gl_swapinterval->modified = false; - - if ( !gl_state.stereo_enabled ) - { -#ifdef _WIN32 - if ( qwglSwapIntervalEXT ) - qwglSwapIntervalEXT( gl_swapinterval->value ); -#endif - } } }