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/TacticalAI.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Stars45/TacticalAI.cpp') diff --git a/Stars45/TacticalAI.cpp b/Stars45/TacticalAI.cpp index 82385f3..7f4e64d 100644 --- a/Stars45/TacticalAI.cpp +++ b/Stars45/TacticalAI.cpp @@ -11,7 +11,6 @@ Generic Ship Tactical Level AI class */ -#include "MemDebug.h" #include "TacticalAI.h" #include "ShipAI.h" #include "CarrierAI.h" @@ -52,7 +51,7 @@ directed_tgtid(0) if (ship && ship->GetHangar() && ship->GetCommandAILevel() > 0 && ship != sim->GetPlayerShip()) - carrier_ai = new(__FILE__,__LINE__) CarrierAI(ship, ship_ai->GetAILevel()); + carrier_ai = new CarrierAI(ship, ship_ai->GetAILevel()); } agression = 0; @@ -299,7 +298,7 @@ TacticalAI::ProcessOrders() double range = Point(controller->Location() - ship->Location()).length(); if (range < 50e3) { - msg = new(__FILE__,__LINE__) RadioMessage(controller, ship, RadioMessage::CALL_INBOUND); + msg = new RadioMessage(controller, ship, RadioMessage::CALL_INBOUND); RadioTraffic::Transmit(msg); } } -- cgit v1.1