aboutsummaryrefslogtreecommitdiff
path: root/path_functions.cpp
diff options
context:
space:
mode:
authorDavid Skoland <davidskoland@gmail.com>2017-02-15 23:16:06 +0100
committerDavid Skoland <davidskoland@gmail.com>2017-02-15 23:16:06 +0100
commitb210f264a90f95aa8ca22cb03e313468767225a8 (patch)
treeaacbd06dac8ad4f64bb077307bc1426aa3c7a342 /path_functions.cpp
parent9ec69c2d2fbd19511b8d51e83fbe5b5e61909deb (diff)
parent897e19546ae9dae3e4197d97739a14c05c07f4aa (diff)
Merge branch 'master' of https://github.com/Attorney-Online-Engineering-Task-Force/Attorney-Online-Client-Remake
Diffstat (limited to 'path_functions.cpp')
-rw-r--r--path_functions.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/path_functions.cpp b/path_functions.cpp
index cab8752..a6c7b86 100644
--- a/path_functions.cpp
+++ b/path_functions.cpp
@@ -1,17 +1,16 @@
#include "aoapplication.h"
#include "courtroom.h"
-#ifndef OMNI_WIN_DEBUG
-#define OMNI_WIN_DEBUG
-
#include <QDir>
#include <QDebug>
-#endif
QString AOApplication::get_base_path()
{
+
#ifdef OMNI_DEBUG
return "/media/omnitroid/Data/winshare/AO/client/base/";
+#elif defined(OMNI_WIN_DEBUG)
+ return "E:/AO/client/base/";
#else
return (QDir::currentPath() + "/base/");
#endif