Fixes for Win32 build.

This commit is contained in:
Robert Osfield
2002-09-28 07:43:04 +00:00
parent 2a94879fcc
commit b57b0b16b9
2 changed files with 3 additions and 4 deletions

View File

@@ -372,7 +372,7 @@ void IndexedGeometry::drawImmediateMode(State& state)
{
if (texcoordPair.second.valid())
{
if (!texcoordPair.second->getNumElements()>0)
if (texcoordPair.second->getNumElements()>0)
{
drawTexCoordList.push_back(new DrawMultiTexCoord(GL_TEXTURE0+unit,texcoordPair.first.get(),texcoordPair.second.get(),
s_glMultiTexCoord1f,
@@ -403,7 +403,7 @@ void IndexedGeometry::drawImmediateMode(State& state)
{
if (texcoordPair.second.valid())
{
if (!texcoordPair.second->getNumElements()>0)
if (texcoordPair.second->getNumElements()>0)
{
drawTextCoord = new DrawTexCoord(texcoordPair.first.get(),texcoordPair.second.get());