From: Ash Tyndall Date: Fri, 21 Oct 2011 06:29:01 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=e31fd5e84420b96a84ef8be0e29f8cc60606f458 --- diff --git a/helper.c b/helper.c index 0f711c2..79cc5d8 100644 --- a/helper.c +++ b/helper.c @@ -210,8 +210,11 @@ int makeSubmenuFromArray( const char *menuEntries[], unsigned int menuEntriesSiz * Draw a floor by looping over the floorSize and squareSize variables */ void drawFloor() { - getTexture(currentGroundTexture); - glBindTexture(GL_TEXTURE_2D, currentGroundTexture); + if ( currentGroundTexture != 0 ) { + getTexture(currentGroundTexture); + glBindTexture(GL_TEXTURE_2D, currentGroundTexture); + } + glBegin(GL_QUADS); for ( int x = -floorSize; x < floorSize; x++ ) { for ( int z = -floorSize; z < floorSize; z++ ) { @@ -231,7 +234,10 @@ void drawFloor() { } } glEnd(); - glBindTexture(GL_TEXTURE_2D, 0); + + if ( currentGroundTexture != 0 ) { + glBindTexture(GL_TEXTURE_2D, 0); + } } /**