- fixed compile.

This commit is contained in:
Christoph Oelckers 2022-10-02 20:45:00 +02:00
commit 2c29a93f1f
4 changed files with 4 additions and 4 deletions

View file

@ -1484,7 +1484,7 @@ int FTextureManager::CountLumpTextures (int lumpnum)
if (lumpnum >= 0)
{
auto file = fileSystem.OpenFileReader (lumpnum);
uint32_t numtex = file.ReadUInt32();;
uint32_t numtex = file.ReadUInt32();
return int(numtex) >= 0 ? numtex : 0;
}