- Backend update from Raze, mostly maintenance changes without new functionality.

This commit is contained in:
Christoph Oelckers 2022-08-11 22:51:19 +02:00
commit c89ae6358e
22 changed files with 90 additions and 43 deletions

View file

@ -378,9 +378,9 @@ bool FVoxelModel::Load(const char * fn, int lumpnum, const char * buffer, int le
//
//===========================================================================
int FVoxelModel::FindFrame(const char * name)
int FVoxelModel::FindFrame(const char * name, bool nodefault)
{
return 0;
return nodefault? FErr_Voxel : 0; // -2, not -1 because voxels are special.
}
//===========================================================================