From a12e588079700d55a0b788fea2df7727c2e41f52 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 27 Mar 2022 17:42:26 +0200 Subject: Removed MemDebug from FoundationEx --- Stars45/StarshipAI.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Stars45/StarshipAI.cpp') diff --git a/Stars45/StarshipAI.cpp b/Stars45/StarshipAI.cpp index 5b6b697..69abdae 100644 --- a/Stars45/StarshipAI.cpp +++ b/Stars45/StarshipAI.cpp @@ -11,7 +11,6 @@ Starship (low-level) Artificial Intelligence class */ -#include "MemDebug.h" #include "StarshipAI.h" #include "StarshipTacticalAI.h" #include "Ship.h" @@ -63,7 +62,7 @@ StarshipAI::StarshipAI(SimObject* s) } else { - tactical = new(__FILE__,__LINE__) StarshipTacticalAI(this); + tactical = new StarshipTacticalAI(this); } sub_select_time = Clock::GetInstance()->GameTime() + (DWORD) Random(0, 2000); -- cgit v1.1