diff options
Diffstat (limited to '')
-rw-r--r-- | src/main.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index b17a30a3..b7d1d151 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,5 +1,6 @@ -#include "common.h" +#include <direct.h> #include <Windows.h> +#include "common.h" #include "patcher.h" #include "Renderer.h" #include "debugmenu_public.h" @@ -36,6 +37,16 @@ mysrand(unsigned int seed) myrand_seed = seed; } +// platform stuff +char* +GetUserDirectory(void) +{ + static char path[MAX_PATH]; + strcpy(path, "userfiles"); + mkdir(path); + return path; +} + int (*open_script_orig)(const char *path, const char *mode); int |