summaryrefslogtreecommitdiffhomepage
path: root/Stars45/SimEvent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/SimEvent.cpp')
-rw-r--r--Stars45/SimEvent.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Stars45/SimEvent.cpp b/Stars45/SimEvent.cpp
index 731f090..4fad773 100644
--- a/Stars45/SimEvent.cpp
+++ b/Stars45/SimEvent.cpp
@@ -11,7 +11,6 @@
Simulation Events for mission summary
*/
-#include "MemDebug.h"
#include "SimEvent.h"
#include "Sim.h"
#include "Clock.h"
@@ -204,7 +203,7 @@ ShipStats::AddEvent(SimEvent* e)
SimEvent*
ShipStats::AddEvent(int event, const char* tgt, const char* info)
{
- SimEvent* e = new(__FILE__,__LINE__) SimEvent(event, tgt, info);
+ SimEvent* e = new SimEvent(event, tgt, info);
events.append(e);
return e;
}
@@ -252,7 +251,7 @@ ShipStats::Find(const char* name)
return stats;
}
- ShipStats* stats = new(__FILE__,__LINE__) ShipStats(name);
+ ShipStats* stats = new ShipStats(name);
records.append(stats);
return stats;
}