summaryrefslogtreecommitdiffhomepage
path: root/Stars45/FighterAI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/FighterAI.cpp')
-rw-r--r--Stars45/FighterAI.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Stars45/FighterAI.cpp b/Stars45/FighterAI.cpp
index c394cca..4160174 100644
--- a/Stars45/FighterAI.cpp
+++ b/Stars45/FighterAI.cpp
@@ -11,7 +11,6 @@
Fighter (low-level) Artificial Intelligence class
*/
-#include "MemDebug.h"
#include "FighterAI.h"
#include "FighterTacticalAI.h"
#include "Ship.h"
@@ -52,7 +51,7 @@ go_manual(false)
brakes = 0;
z_shift = 0;
- tactical = new(__FILE__,__LINE__) FighterTacticalAI(this);
+ tactical = new FighterTacticalAI(this);
}
@@ -608,7 +607,7 @@ FighterAI::Navigator()
Ship* s = elem->GetShip(i+1);
if (s) {
- RadioMessage* msg = new(__FILE__,__LINE__) RadioMessage(dock_target, s, RadioMessage::CALL_INBOUND);
+ RadioMessage* msg = new RadioMessage(dock_target, s, RadioMessage::CALL_INBOUND);
RadioTraffic::Transmit(msg);
}
}