- Fixed compiler errors in latest TEXTURES code.

This commit is contained in:
Edoardo Prezioso 2014-05-25 01:12:16 +02:00
commit b285cbebe4
7 changed files with 17 additions and 17 deletions

View file

@ -63,7 +63,7 @@ static bool R_InstallSpriteLump (FTextureID lump, unsigned frame, char rot, bool
if (frame >= MAX_SPRITE_FRAMES || rotation > 16)
{
Printf (TEXTCOLOR_RED"R_InstallSpriteLump: Bad frame characters in lump %s\n", TexMan[lump]->Name);
Printf (TEXTCOLOR_RED"R_InstallSpriteLump: Bad frame characters in lump %s\n", TexMan[lump]->Name.GetChars());
return false;
}
@ -998,4 +998,4 @@ void R_DeinitSpriteData()
delete[] skins;
skins = NULL;
}
}
}