- don't let models.cpp include gl_system.h.

This commit is contained in:
Christoph Oelckers 2017-11-25 13:56:17 +01:00
parent 836970f012
commit e43a9aa5b5
1 changed files with 4 additions and 1 deletions

View File

@ -26,7 +26,6 @@
**
**/
#include "gl/system/gl_system.h"
#include "w_wad.h"
#include "cmdlib.h"
#include "sc_man.h"
@ -42,6 +41,10 @@
#include "i_time.h"
#include "r_data/models/models.h"
#ifdef _MSC_VER
#pragma warning(disable:4244) // warning C4244: conversion from 'double' to 'float', possible loss of data
#endif
CVAR(Bool, gl_interpolate_model_frames, true, CVAR_ARCHIVE)
EXTERN_CVAR(Bool, r_drawvoxels)