Changeset - r11741:f1c7a192df6b
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-04-24 17:23:32
rubidium@openttd.org
(svn r16136) -Fix (r16095)[FS#2858]: sometimes autorail wouldn't work; seems to be primarily for OSX users though
1 file changed with 1 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/viewport.cpp
Show inline comments
 
@@ -2267,10 +2267,7 @@ void VpStartPlaceSizing(TileIndex tile, 
 
	if (_thd.place_mode == HT_RECT) {
 
		_thd.place_mode = HT_SPECIAL;
 
		_thd.next_drawstyle = HT_RECT;
 
	} else if (_thd.place_mode & HT_RAIL) {
 
		_thd.place_mode = HT_SPECIAL;
 
		_thd.next_drawstyle = HT_RAIL;
 
	} else if (_thd.place_mode & HT_LINE) {
 
	} else if (_thd.place_mode & (HT_RAIL | HT_LINE)) {
 
		_thd.place_mode = HT_SPECIAL;
 
		_thd.next_drawstyle = _thd.drawstyle;
 
	} else {
0 comments (0 inline, 0 general)