fix AskForObjectToBeRenderedInGlass

This commit is contained in:
Fire-Head 2020-10-12 23:10:08 +03:00
parent 3772be32bf
commit 1e068aea73
1 changed files with 2 additions and 2 deletions

View File

@ -393,9 +393,9 @@ void
CGlass::AskForObjectToBeRenderedInGlass(CEntity *entity)
{
#ifdef FIX_BUGS
if ( NumGlassEntities < NUM_GLASSPANES )
if ( NumGlassEntities < NUM_GLASSENTITIES )
#else
if ( NumGlassEntities < NUM_GLASSPANES-1 )
if ( NumGlassEntities < NUM_GLASSENTITIES-1 )
#endif
{
apEntitiesToBeRendered[NumGlassEntities++] = entity;