summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Locale_ss.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/Locale_ss.cpp')
-rw-r--r--Stars45/Locale_ss.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/Stars45/Locale_ss.cpp b/Stars45/Locale_ss.cpp
index 334434a..427753c 100644
--- a/Stars45/Locale_ss.cpp
+++ b/Stars45/Locale_ss.cpp
@@ -11,7 +11,6 @@
3D Locale (Polygon) Object
*/
-#include "MemDebug.h"
#include "Locale_ss.h"
#include "Utils.h"
@@ -147,11 +146,11 @@ Locale::CreateLocale(const char* l, const char* c, const char* v)
if (l[0]) {
if (c[0]) {
if (v[0]) {
- return new(__FILE__,__LINE__) Locale(l, c, v);
+ return new Locale(l, c, v);
}
- return new(__FILE__,__LINE__) Locale(l, c);
+ return new Locale(l, c);
}
- return new(__FILE__,__LINE__) Locale(l);
+ return new Locale(l);
}
return 0;