- moved hw_cvars to 'common'.

This commit is contained in:
Christoph Oelckers 2020-04-26 11:38:38 +02:00
commit cf41a0b1fb
34 changed files with 37 additions and 36 deletions

View file

@ -1541,3 +1541,9 @@ FTextureID FTextureID::operator +(int offset) throw()
if (texnum + offset >= TexMan.NumTextures()) return FTextureID(-1);
return FTextureID(texnum + offset);
}
CCMD(flushtextures)
{
TexMan.FlushAll();
}