summaryrefslogtreecommitdiff
path: root/src/fileio.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-05-26 19:27:22 +0000
committerfrosch <frosch@openttd.org>2013-05-26 19:27:22 +0000
commit23ba42b66ccf915230cab163cdeca19db6e95f76 (patch)
treeeea2f6daffe6fc9283487ed3736dde80ebc87825 /src/fileio.cpp
parent8157a8afd814cb24aaaa4c725817c864e0c583c6 (diff)
downloadopenttd-23ba42b66ccf915230cab163cdeca19db6e95f76.tar.xz
(svn r25291) -Add: WindowDesc ability to load and store information in a config file.
Diffstat (limited to 'src/fileio.cpp')
-rw-r--r--src/fileio.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index e97565262..8105e4ad0 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -1196,6 +1196,8 @@ void DeterminePaths(const char *exe)
_highscore_file = str_fmt("%shs.dat", _personal_dir);
extern char *_hotkeys_file;
_hotkeys_file = str_fmt("%shotkeys.cfg", _personal_dir);
+ extern char *_windows_file;
+ _windows_file = str_fmt("%swindows.cfg", _personal_dir);
/* Make the necessary folders */
#if !defined(__MORPHOS__) && !defined(__AMIGA__) && defined(WITH_PERSONAL_DIR)