diff options
author | rubidium <rubidium@openttd.org> | 2009-11-09 09:59:35 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-09 09:59:35 +0000 |
commit | c2221885f488b9a7ca52b11e621582d4c60ab80d (patch) | |
tree | b793601f63728bb573ffd9825355792c89d7e315 /src/table | |
parent | 37027467567dd0b75bbb932cdab87da3ff24dedd (diff) | |
download | openttd-c2221885f488b9a7ca52b11e621582d4c60ab80d.tar.xz |
(svn r18027) -Codechange: make some unneededly global variables static and remove some unused variables
Diffstat (limited to 'src/table')
-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 cac6ce7ea..623ed658d 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -278,7 +278,7 @@ static const SettingDescGlobVarList _misc_settings[] = { }; static const uint GAME_DIFFICULTY_NUM = 18; -uint16 _old_diff_custom[GAME_DIFFICULTY_NUM]; +static uint16 _old_diff_custom[GAME_DIFFICULTY_NUM]; /* Most of these strings are used both for gameopt-backward compatability * and the settings tables. The rest is here for consistency. */ |