diff options
author | rubidium <rubidium@openttd.org> | 2009-09-26 17:50:10 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-09-26 17:50:10 +0000 |
commit | 812ba0305817d8f112bb4dcecff2f61c9a7c641b (patch) | |
tree | 4ea67e3b99d01eae190e5e51c697ec13b666f433 | |
parent | 870af9695aeefb6d3a2aadc265eb2cbbef5cd12d (diff) | |
download | openttd-812ba0305817d8f112bb4dcecff2f61c9a7c641b.tar.xz |
(svn r17646) -Fix (r17644): GCC 4.4/4.5 compile failure
-rw-r--r-- | src/table/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/settings.h b/src/table/settings.h index d81422c91..1bdb6f5b9 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -213,7 +213,7 @@ static bool UpdateClientConfigValues(int32 p1); #define CR SGF_CURRENCY #define NN SGF_NO_NETWORK #define NG SGF_NEWGAME_ONLY -#define NS (SGF_NEWGAME_ONLY | SGF_SCENEDIT_TOO) +#define NS SGF_NEWGAME_ONLY | SGF_SCENEDIT_TOO #define PC SGF_PER_COMPANY static const SettingDesc _music_settings[] = { |