mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- don't let models.cpp include gl_system.h.
This commit is contained in:
parent
836970f012
commit
e43a9aa5b5
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue