summaryrefslogtreecommitdiff
path: root/src/settings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-01-07 00:19:09 +0000
committerrubidium <rubidium@openttd.org>2008-01-07 00:19:09 +0000
commit2469bca24c313387ebee109d35ac34863a27e2b7 (patch)
treee2d571e7a2bcd64e4935d2f2df1811bb45953f7e /src/settings.cpp
parent588f1d2aca8d3ea15233c3864d0cc729aac0d64a (diff)
downloadopenttd-2469bca24c313387ebee109d35ac34863a27e2b7.tar.xz
(svn r11771) -Codechange: split settings.h into better separated headers.
Diffstat (limited to 'src/settings.cpp')
-rw-r--r--src/settings.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index 5fc0b2221..71b626aa4 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -26,7 +26,7 @@
#include "string.h"
#include "variables.h"
#include "network/network.h"
-#include "settings.h"
+#include "settings_internal.h"
#include "command_func.h"
#include "console.h"
#include "saveload.h"
@@ -48,7 +48,10 @@
#include "spritecache.h"
#include "transparency.h"
-/** The patch values that are used for new games and/or modified in config file */
+GameOptions _opt;
+GameOptions _opt_newgame;
+GameOptions *_opt_ptr;
+Patches _patches;
Patches _patches_newgame;
struct IniFile;