diff options
author | rubidium <rubidium@openttd.org> | 2010-04-24 13:22:17 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-04-24 13:22:17 +0000 |
commit | fef77ca53e2d3a381889aecc6739053f1582143b (patch) | |
tree | 21d5e4021bbbbc6599cd130e3837503c41b7a3c1 /src/table | |
parent | 3461430a34880d0db9ac2b5dc711e7dd876264f7 (diff) | |
download | openttd-fef77ca53e2d3a381889aecc6739053f1582143b.tar.xz |
(svn r19705) -Change: reinitialise the windows when changing the newgrf_developer_tools setting
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/table/settings.h b/src/table/settings.h index c4eba3ded..0990e4116 100644 --- a/src/table/settings.h +++ b/src/table/settings.h @@ -13,6 +13,7 @@ static bool v_PositionMainToolbar(int32 p1); static bool PopulationInLabelActive(int32 p1); static bool RedrawScreen(int32 p1); +static bool ReinitWindows(int32 p1); static bool RedrawSmallmap(int32 p1); static bool InvalidateDetailsWindow(int32 p1); static bool InvalidateStationBuildWindow(int32 p1); @@ -605,7 +606,7 @@ const SettingDesc _settings[] = { SDTC_BOOL(gui.show_date_in_logs, S, 0, false, STR_NULL, NULL), #endif SDTC_VAR(gui.developer, SLE_UINT8, S, 0, 1, 0, 2, 0, STR_NULL, NULL), - SDTC_BOOL(gui.newgrf_developer_tools, S, 0, false, STR_NULL, NULL), + SDTC_BOOL(gui.newgrf_developer_tools, S, 0, false, STR_NULL, ReinitWindows), SDTC_BOOL(gui.ai_developer_tools, S, 0, false, STR_NULL, NULL), SDTC_VAR(gui.console_backlog_timeout, SLE_UINT16, S, 0, 100, 10, 65500, 0, STR_NULL, NULL), SDTC_VAR(gui.console_backlog_length, SLE_UINT16, S, 0, 100, 10, 65500, 0, STR_NULL, NULL), |