mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Fix non-OpenGL build.
git-svn-id: https://svn.eduke32.com/eduke32@2357 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
60020d2dd4
commit
e14b2808ef
1 changed files with 4 additions and 1 deletions
|
@ -4201,8 +4201,11 @@ static int32_t DrawTiles(int32_t iTopLeft, int32_t iSelected, int32_t nXTiles, i
|
|||
int32_t i, x, y;
|
||||
const char *pRawPixels;
|
||||
char szT[128];
|
||||
|
||||
#ifdef USE_OPENGL
|
||||
int32_t lazyselector = g_lazy_tileselector && usehightile;
|
||||
#else
|
||||
int32_t lazyselector = g_lazy_tileselector;
|
||||
#endif
|
||||
int32_t runi=0, usehitile;
|
||||
static uint8_t loadedhitile[(MAXTILES+7)>>3];
|
||||
|
||||
|
|
Loading…
Reference in a new issue