File diff r1976:fcef181ed14a → r1977:1f8b99c96041
signs.c
Show inline comments
 
@@ -183,13 +183,13 @@ int32 CmdRenameSign(int x, int y, uint32
 

	
 
/**
 
 *
 
 * Callback function that is called after a sign is placed
 
 *
 
 */
 
void CcPlaceSign(bool success, uint tile, uint32 p1, uint32 p2)
 
void CcPlaceSign(bool success, TileIndex tile, uint32 p1, uint32 p2)
 
{
 
	if (success) {
 
		ShowRenameSignWindow(_new_sign_struct);
 
		ResetObjectToPlace();
 
	}
 
}
 
@@ -197,13 +197,13 @@ void CcPlaceSign(bool success, uint tile
 
/**
 
 *
 
 * PlaceProc function, called when someone pressed the button if the
 
 *  sign-tool is selected
 
 *
 
 */
 
void PlaceProc_Sign(uint tile)
 
void PlaceProc_Sign(TileIndex tile)
 
{
 
	DoCommandP(tile, _current_player, 0, CcPlaceSign, CMD_PLACE_SIGN | CMD_MSG(STR_2809_CAN_T_PLACE_SIGN_HERE));
 
}
 

	
 
/**
 
 *