Changeset - r8558:7419ecc1d583
[Not reviewed]
master
0 2 0
belugas - 17 years ago 2008-02-14 03:10:22
belugas@openttd.org
(svn r12136) -Fix(r12135): Code style compliance and... code style as such
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/bridge_gui.cpp
Show inline comments
 
@@ -147,7 +147,7 @@ void ShowBuildBridgeWindow(TileIndex sta
 
{
 
	DeleteWindowById(WC_BUILD_BRIDGE, 0);
 

	
 
	_bridgedata.type = ((transport_type << 7) | bridge_type) << 8; //prepare the parameter for use only once
 
	_bridgedata.type = (transport_type << 15) | (bridge_type << 8); //prepare the parameter for use only once
 
	_bridgedata.start_tile = start;
 
	_bridgedata.end_tile = end;
 

	
src/gui.h
Show inline comments
 
@@ -106,7 +106,7 @@ void SetFiosType(const byte fiostype);
 
extern const TextColour _fios_colors[];
 

	
 
/* bridge_gui.cpp */
 
void ShowBuildBridgeWindow(TileIndex start, TileIndex end, TransportType Transport_type, byte type);
 
void ShowBuildBridgeWindow(TileIndex start, TileIndex end, TransportType transport_type, byte bridge_type);
 

	
 
void ShowBuildIndustryWindow();
 
void ShowMusicWindow();
0 comments (0 inline, 0 general)