- converted FBehavior::StaticSerializeModuleStates.

- removed some code which is no longer needed.
This commit is contained in:
Christoph Oelckers 2016-09-20 11:35:25 +02:00
commit cf1e6d5275
10 changed files with 60 additions and 115 deletions

View file

@ -1227,25 +1227,6 @@ int FTextureManager::CountLumpTextures (int lumpnum)
}
//==========================================================================
//
// operator<<
//
//==========================================================================
FArchive &operator<< (FArchive &arc, FTextureID &tex)
{
if (arc.IsStoring())
{
TexMan.WriteTexture(arc, tex.texnum);
}
else
{
tex.texnum = TexMan.ReadTexture(arc);
}
return arc;
}
//==========================================================================
//
// FTextureID::operator+