GCC fixes.
SVN r677 (trunk)
This commit is contained in:
parent
016ac67376
commit
bec0d3438f
9 changed files with 30 additions and 22 deletions
|
|
@ -173,7 +173,7 @@ int FTextureManager::ListTextures (const char *name, TArray<int> &list)
|
|||
// NULL textures must be ignored.
|
||||
if (tex->UseType!=FTexture::TEX_Null)
|
||||
{
|
||||
int j;
|
||||
unsigned int j;
|
||||
for(j = 0; j < list.Size(); j++)
|
||||
{
|
||||
// Check for overriding definitions from newer WADs
|
||||
|
|
@ -383,7 +383,7 @@ void FTextureManager::AddHiresTextures ()
|
|||
}
|
||||
else
|
||||
{
|
||||
for(int i = 0; i < tlist.Size(); i++)
|
||||
for(unsigned int i = 0; i < tlist.Size(); i++)
|
||||
{
|
||||
FTexture * newtex = FTexture::CreateTexture (firsttx, FTexture::TEX_Any);
|
||||
if (newtex != NULL)
|
||||
|
|
@ -460,7 +460,7 @@ void FTextureManager::LoadHiresTex()
|
|||
}
|
||||
else
|
||||
{
|
||||
for(int i = 0; i < tlist.Size(); i++)
|
||||
for(unsigned int i = 0; i < tlist.Size(); i++)
|
||||
{
|
||||
FTexture * oldtex = Textures[tlist[i]].Texture;
|
||||
int sl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue