summaryrefslogtreecommitdiff
path: root/src/fileio.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-07-19 17:11:09 +0000
committerrubidium <rubidium@openttd.org>2010-07-19 17:11:09 +0000
commiteb30ebe1a4b5b6b5fef98331ec91c1d23b4a00cc (patch)
tree048f55dc7bb47f2f254ad5935353ad6b68f9a32c /src/fileio.cpp
parent5a836cdec79cea79ff3ef69c08f13a0546c6dacd (diff)
downloadopenttd-eb30ebe1a4b5b6b5fef98331ec91c1d23b4a00cc.tar.xz
(svn r20188) -Codechange: unVARDEF the _[config|log|highscore]_file variables and move them to a more logical location
Diffstat (limited to 'src/fileio.cpp')
-rw-r--r--src/fileio.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index f3d57fb72..f1f8faae1 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -56,6 +56,10 @@ static Fio _fio;
/** Whether the working directory should be scanned. */
static bool _do_scan_working_directory = true;
+extern char *_config_file;
+extern char *_highscore_file;
+extern char *_log_file;
+
/* Get current position in file */
size_t FioGetPos()
{