Fix newgranularity variable when using debug build

This commit is contained in:
LegendaryGuard 2024-08-04 14:07:12 +02:00
parent 164283aee3
commit f924ef8641

View file

@ -152,7 +152,7 @@ idList<type>::idList( int )
template< class type >
ID_INLINE idList<type>::idList( int newgranularity ) {
#ifdef _DEBUG && 0
assert( newGranularity > 0 );
assert( newgranularity > 0 );
#endif
list = NULL;
granularity = newgranularity;
@ -313,7 +313,7 @@ ID_INLINE void idList<type>::SetGranularity( int newgranularity ) {
int newsize;
#ifdef _DEBUG && 0
assert( newGranularity > 0 );
assert( newgranularity > 0 );
#endif
granularity = newgranularity;
@ -423,7 +423,7 @@ ID_INLINE void idList<type>::Resize( int newsize, int newgranularity ) {
#ifdef _DEBUG && 0
assert( newsize >= 0 );
assert( newGranularity > 0 );
assert( newgranularity > 0 );
#endif
granularity = newgranularity;