- Changed TAG_MORE to pass a va_list pointer instead of a va_list because it's a

non-POD type when targeting several non-ix86 targets with GCC. Hopefully this works.


SVN r80 (trunk)
This commit is contained in:
Randy Heit 2006-05-06 00:54:41 +00:00
commit fd0c5a6db6
6 changed files with 40 additions and 14 deletions

View file

@ -1746,7 +1746,10 @@ void FIMGZTexture::MakeTexture ()
}
}
if (Spans == NULL) Spans = CreateSpans (Pixels);
if (Spans == NULL)
{
Spans = CreateSpans (Pixels);
}
}
@ -1976,7 +1979,10 @@ void FPNGTexture::MakeTexture ()
delete[] oldpix;
}
}
if (Spans == NULL) Spans = CreateSpans (Pixels);
if (Spans == NULL)
{
Spans = CreateSpans (Pixels);
}
}
@ -2232,7 +2238,10 @@ void FMultiPatchTexture::MakeTexture ()
Parts[i].OriginX, Parts[i].OriginY);
}
if (Spans == NULL) Spans = CreateSpans (Pixels);
if (Spans == NULL)
{
Spans = CreateSpans (Pixels);
}
}
void FMultiPatchTexture::CheckForHacks ()