Fix non-OpenGL build.

git-svn-id: https://svn.eduke32.com/eduke32@2357 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-02-18 17:56:26 +00:00
parent 60020d2dd4
commit e14b2808ef
1 changed files with 4 additions and 1 deletions

View File

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