mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-04-04 16:41:31 +00:00
Fix newgranularity variable when using debug build
This commit is contained in:
parent
164283aee3
commit
f924ef8641
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue