summaryrefslogtreecommitdiff
path: root/src/mmo/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mmo/core.cpp')
-rw-r--r--src/mmo/core.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mmo/core.cpp b/src/mmo/core.cpp
index 2264ec6..f1a8d07 100644
--- a/src/mmo/core.cpp
+++ b/src/mmo/core.cpp
@@ -27,6 +27,8 @@
#include <csignal>
#include <cstdlib>
+#include <tmwa/shared.hpp>
+
#include "../strings/zstring.hpp"
#include "../strings/literal.hpp"
@@ -107,6 +109,9 @@ void sig_proc(int)
int main(int argc, char **argv)
{
using namespace tmwa;
+
+ check_paths();
+
// ZString args[argc]; is (deliberately!) not supported by clang yet
ZString *args = static_cast<ZString *>(alloca(argc * sizeof(ZString)));
for (int i = 0; i < argc; ++i)