(svn r1614) Fix: Signals were not updated correctly when the vehicle drive side was changed
authordominik
Sun, 23 Jan 2005 13:45:20 +0000
changeset 1113 8c4c1e1ba4c5
parent 1112 32f3e7a98095
child 1114 5433cbd50835
(svn r1614) Fix: Signals were not updated correctly when the vehicle drive side was changed
settings_gui.c
--- a/settings_gui.c	Sun Jan 23 13:42:26 2005 +0000
+++ b/settings_gui.c	Sun Jan 23 13:45:20 2005 +0000
@@ -167,8 +167,10 @@
 			MarkWholeScreenDirty();
 			break;
 		case 11: /* Road side */
-			if (_opt_mod_ptr->road_side != e->dropdown.index) // only change if setting changed
+			if (_opt_mod_ptr->road_side != e->dropdown.index) { // only change if setting changed
 				DoCommandP(0, e->dropdown.index, 0, NULL, CMD_SET_ROAD_DRIVE_SIDE | CMD_MSG(STR_EMPTY));
+				MarkWholeScreenDirty();
+			}
 			break;
 		case 14: /* Town names */
 			if (_game_mode == GM_MENU)