diff options
author | aap <aap@papnet.eu> | 2019-06-13 01:12:37 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-13 01:12:37 +0200 |
commit | 3472a614ae3b4ecf7f49516a97d387761f0f5820 (patch) | |
tree | 27f6bd454211d0ea8c88b34915ee22ef7e9c05a0 /src/re3.cpp | |
parent | implemented CutsceneObject; little fixes (diff) | |
download | re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.gz re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.bz2 re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.lz re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.xz re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.tar.zst re3-3472a614ae3b4ecf7f49516a97d387761f0f5820.zip |
Diffstat (limited to '')
-rw-r--r-- | src/re3.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/re3.cpp b/src/re3.cpp index 55ce5699..905aa992 100644 --- a/src/re3.cpp +++ b/src/re3.cpp @@ -47,17 +47,6 @@ 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 open_script(const char *path, const char *mode) |