File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
GeneralsMD/Code/GameEngine/Source/GameClient
Generals/Code/GameEngine/Source/GameClient Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -457,6 +457,9 @@ void GameClient::reset( void )
457
457
// clear any drawable TOC we might have
458
458
m_drawableTOC.clear ();
459
459
460
+ // TheSuperHackers @fix Mauller 13/04/2025 Reset the drawable id so it does not keep growing over the lifetime of the game.
461
+ m_nextDrawableID = (DrawableID)1 ;
462
+
460
463
} // end reset
461
464
462
465
/* * -----------------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -478,6 +478,9 @@ void GameClient::reset( void )
478
478
// clear any drawable TOC we might have
479
479
m_drawableTOC.clear ();
480
480
481
+ // TheSuperHackers @fix Mauller 13/04/2025 Reset the drawable id so it does not keep growing over the lifetime of the game.
482
+ m_nextDrawableID = (DrawableID)1 ;
483
+
481
484
} // end reset
482
485
483
486
/* * -----------------------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments