diff options
author | rubidium <rubidium@openttd.org> | 2009-08-09 16:54:03 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-08-09 16:54:03 +0000 |
commit | f1189326439122811d9db35674d7f356575d2863 (patch) | |
tree | c7d33d19bdcdd2ce5fd05d86f63d51fdbca4de61 /src/table | |
parent | b7e746f72cf41992d86417f7f44917a5d380bcdd (diff) | |
download | openttd-f1189326439122811d9db35674d7f356575d2863.tar.xz |
(svn r17133) -Codechange: generalise the code that searches for base graphics
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 b2c855e49..71f3b5226 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -237,7 +237,7 @@ static const SettingDescGlobVarList _misc_settings[] = { SDTG_MMANY("display_opt", SLE_UINT8, S, 0, _display_opt, (1 << DO_SHOW_TOWN_NAMES | 1 << DO_SHOW_STATION_NAMES | 1 << DO_SHOW_SIGNS | 1 << DO_FULL_ANIMATION | 1 << DO_FULL_DETAIL | 1 << DO_SHOW_WAYPOINT_NAMES), "SHOW_TOWN_NAMES|SHOW_STATION_NAMES|SHOW_SIGNS|FULL_ANIMATION||FULL_DETAIL|WAYPOINTS", STR_NULL, NULL), SDTG_BOOL("news_ticker_sound", S, 0, _news_ticker_sound, true, STR_NULL, NULL), SDTG_BOOL("fullscreen", S, 0, _fullscreen, false, STR_NULL, NULL), - SDTG_STR("graphicsset", SLE_STRQ, S, 0, _ini_graphics_set, NULL, STR_NULL, NULL), + SDTG_STR("graphicsset", SLE_STRQ, S, 0, BaseGraphics::ini_set, NULL, STR_NULL, NULL), SDTG_STR("videodriver", SLE_STRQ, S, 0, _ini_videodriver, NULL, STR_NULL, NULL), SDTG_STR("musicdriver", SLE_STRQ, S, 0, _ini_musicdriver, NULL, STR_NULL, NULL), SDTG_STR("sounddriver", SLE_STRQ, S, 0, _ini_sounddriver, NULL, STR_NULL, NULL), |