Remove delete for pathfinding pointer (not using pointers, no longer necessary)

This commit is contained in:
sigonasr2 2024-01-10 17:54:33 -06:00
parent 8e58607fb9
commit 72916e788a
2 changed files with 1 additions and 2 deletions

View File

@ -2201,7 +2201,6 @@ bool AiL::OnUserDestroy(){
for(auto&[key,value]:GameState::states){
delete value;
}
delete[]pathfinder.nodes;
Menu::CleanupAllMenus();
for(auto&[key,value]:MonsterData::imgs){
delete value;

View File

@ -39,7 +39,7 @@ All rights reserved.
#define VERSION_MAJOR 0
#define VERSION_MINOR 2
#define VERSION_PATCH 1
#define VERSION_BUILD 5583
#define VERSION_BUILD 5586
#define stringify(a) stringify_(a)
#define stringify_(a) #a