diff options
Diffstat (limited to 'path_functions.cpp')
| -rw-r--r-- | path_functions.cpp | 7 |
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 |
