diff options
author | rubidium <rubidium@openttd.org> | 2011-11-14 21:58:19 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-11-14 21:58:19 +0000 |
commit | 86a168b2e9e9f19b8d3e22b368f3aacc920c9896 (patch) | |
tree | d52b200c29f294d8190905a4c16dfe139fc9953f /src/fileio.cpp | |
parent | 834eac49fde187a3af889ba04334d76630e795e3 (diff) | |
download | openttd-86a168b2e9e9f19b8d3e22b368f3aacc920c9896.tar.xz |
(svn r23225) -Fix: create the newgrf/baseset/ai directories in the personal directory so the user has some clue where to place the different files
Diffstat (limited to 'src/fileio.cpp')
-rw-r--r-- | src/fileio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp index 9b54cb1cb..e04cae8fa 100644 --- a/src/fileio.cpp +++ b/src/fileio.cpp @@ -1181,7 +1181,7 @@ void DeterminePaths(const char *exe) #endif static const Subdirectory default_subdirs[] = { - SAVE_DIR, AUTOSAVE_DIR, SCENARIO_DIR, HEIGHTMAP_DIR + SAVE_DIR, AUTOSAVE_DIR, SCENARIO_DIR, HEIGHTMAP_DIR, BASESET_DIR, NEWGRF_DIR, AI_DIR, AI_LIBRARY_DIR }; for (uint i = 0; i < lengthof(default_subdirs); i++) { |