summaryrefslogtreecommitdiff
path: root/settings_gui.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-03-02 02:22:15 +0000
committerDarkvater <darkvater@openttd.org>2006-03-02 02:22:15 +0000
commit42dec88a29c9354367d1d5878e0a825530a6bd58 (patch)
tree83f0af63da1e12c0be0c89dc17b1f1167d857ae3 /settings_gui.c
parentbf1bf1e1ec11f973e78529420b006095aa184ca5 (diff)
downloadopenttd-42dec88a29c9354367d1d5878e0a825530a6bd58.tar.xz
(svn r3726) - [6/6] Finalize conversion, finally save the patches struct.
- Remove the temporary synchronisation in during the map-transfer as this is no longer needed - The saved patches work just like the saved gameoptions. You have a _patches and a _patches_newgame struct. The _patches_newgame struct contains the values from the configuration file and thus the defaults for new games. When a new game is started or an older game is loaded, the default values are copied over to _patches to be used. When you load a game that has PATS saved, the default values are also loaded, but immediately overwritten by the values from the savegame. This ensures that player-based values are always taken from your personal preferences. - The current implementation also changes the default values if you change player-based settings in the game. For example changing window_snap_radius in a certain game will also change it for all next OpenTTD sessions. - The savegame version has been increased to 22. - The last 6 orso patches close the following reports: [ 1366446 ] different names for patches: all patch settings have the same name as in the configuration file and are reachable from the console. [ 1288024 ] Strange string on OTTD initial screen: configuration (and this includes patches) inputs are validated and clamped to their minimum/maximum values. [ 1423198 ] Make "Signals on Drive side" player, not server, based: this is only visual so current setting is to save it with the savegame but not synchronise in multiplayer. [ 1208070 ] Patches and New GRF options saved: apart from newgrf this is done
Diffstat (limited to 'settings_gui.c')
-rw-r--r--settings_gui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/settings_gui.c b/settings_gui.c
index 09196ff76..a452c26b4 100644
--- a/settings_gui.c
+++ b/settings_gui.c
@@ -673,6 +673,8 @@ static const PatchPage _patches_page[] = {
{_patches_ai, lengthof(_patches_ai)},
};
+extern Patches _patches_newgame;
+
/** The main patches window. Shows a number of categories on top and
* a selection of patches in that category.
* Uses WP(w, def_d) macro - data_1, data_2, data_3 */
@@ -682,7 +684,7 @@ static void PatchesSelectionWndProc(Window *w, WindowEvent *e)
switch (e->event) {
case WE_CREATE:
- patches_ptr = &_patches;
+ patches_ptr = (_game_mode == GM_MENU) ? &_patches_newgame : &_patches;
break;
case WE_PAINT: {