Fixes server_only build issue (#3199)

This commit is contained in:
Alayan-stk-2 2018-04-17 02:16:51 +02:00 committed by auriamg
parent 131011d01e
commit c72cf74138

View File

@ -795,6 +795,7 @@ void RaceGUI::drawSpeedEnergyRank(const AbstractKart* kart,
void RaceGUI::drawMeterTexture(video::ITexture *meter_texture, video::S3DVertex vertices[], unsigned int count)
{
#ifndef SERVER_ONLY
//Should be greater or equal than the greatest vertices_count used by the meter functions
short int index[12];
for(unsigned int i=0; i<count; i++)
@ -812,6 +813,7 @@ void RaceGUI::drawMeterTexture(video::ITexture *meter_texture, video::S3DVertex
draw2DVertexPrimitiveList(m.getTexture(0), vertices, count,
index, count-2, video::EVT_STANDARD, scene::EPT_TRIANGLE_FAN);
glDisable(GL_BLEND);
#endif
} // drawMeterTexture