summaryrefslogtreecommitdiff
path: root/src/fileio.cpp
diff options
context:
space:
mode:
authorNiels Martin Hansen <nielsm@indvikleren.dk>2018-04-29 20:07:22 +0200
committerMichael Lutz <michi@icosahedron.de>2018-06-05 22:58:35 +0200
commit458e441a4ca5d451941958e056189a059f2eee76 (patch)
tree359f278aa0c6297eda3b41523424f5c72f8ab2c9 /src/fileio.cpp
parente2fa4b71c62bb09add85c231bd30a2b86ae8b5e6 (diff)
downloadopenttd-458e441a4ca5d451941958e056189a059f2eee76.tar.xz
Codechange: Make FioCreateDirectory public
Diffstat (limited to 'src/fileio.cpp')
-rw-r--r--src/fileio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index 8b5e56fb5..3ad5be711 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -532,7 +532,7 @@ FILE *FioFOpenFile(const char *filename, const char *mode, Subdirectory subdir,
* Create a directory with the given name
* @param name the new name of the directory
*/
-static void FioCreateDirectory(const char *name)
+void FioCreateDirectory(const char *name)
{
/* Ignore directory creation errors; they'll surface later on, and most
* of the time they are 'directory already exists' errors anyhow. */