mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-05 22:04:57 +00:00
(svn r21803) -Cleanup: Remove unnecessary semicolons.
This commit is contained in:
parent
2709454040
commit
679cd3c21b
@ -1664,7 +1664,7 @@ static bool AirportSetBlocks(Aircraft *v, const AirportFTA *current_pos, const A
|
||||
break;
|
||||
}
|
||||
current = current->next;
|
||||
};
|
||||
}
|
||||
|
||||
/* if the block to be checked is in the next position, then exclude that from
|
||||
* checking, because it has been set by the airplane before */
|
||||
|
@ -129,7 +129,7 @@ AirportFTAClass::~AirportFTAClass()
|
||||
AirportFTA *next = current->next;
|
||||
free(current);
|
||||
current = next;
|
||||
};
|
||||
}
|
||||
}
|
||||
free(layout);
|
||||
}
|
||||
|
@ -609,7 +609,7 @@ static int DrawRailEnginePurchaseInfo(int left, int right, int y, EngineID engin
|
||||
SetDParam(1, rvi->pow_wag_weight);
|
||||
DrawString(left, right, y, STR_PURCHASE_INFO_PWAGPOWER_PWAGWEIGHT);
|
||||
y += FONT_HEIGHT_NORMAL;
|
||||
};
|
||||
}
|
||||
|
||||
return y;
|
||||
}
|
||||
|
@ -437,7 +437,7 @@ static Colours GenerateCompanyColour()
|
||||
Swap(colours[j - 1], colours[j]);
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
/* Move the colours that look similar to each company's colour to the side */
|
||||
Company *c;
|
||||
|
@ -849,7 +849,7 @@ struct DepotWindow : Window {
|
||||
this->sel = INVALID_VEHICLE;
|
||||
this->vehicle_over = INVALID_VEHICLE;
|
||||
this->SetWidgetDirty(DEPOT_WIDGET_MATRIX);
|
||||
};
|
||||
}
|
||||
|
||||
virtual void OnMouseDrag(Point pt, int widget)
|
||||
{
|
||||
|
@ -755,7 +755,7 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow {
|
||||
this->widget_id = widget;
|
||||
SetDParam(0, _settings_newgame.game_creation.custom_town_number);
|
||||
ShowQueryString(STR_JUST_INT, STR_MAPGEN_NUMBER_OF_TOWNS, 5, 50, this, CS_NUMERAL, QSF_NONE);
|
||||
};
|
||||
}
|
||||
IConsoleSetSetting("difficulty.number_towns", index);
|
||||
break;
|
||||
|
||||
@ -776,7 +776,7 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow {
|
||||
this->widget_id = widget;
|
||||
SetDParam(0, _settings_newgame.game_creation.custom_sea_level);
|
||||
ShowQueryString(STR_JUST_INT, STR_MAPGEN_QUANTITY_OF_SEA_LAKES, 3, 50, this, CS_NUMERAL, QSF_NONE);
|
||||
};
|
||||
}
|
||||
GameMode old_gm = _game_mode;
|
||||
_game_mode = GM_MENU;
|
||||
IConsoleSetSetting("difficulty.quantity_sea_lakes", index);
|
||||
|
@ -424,7 +424,7 @@ struct MainWindow : Window
|
||||
this->viewport->scrollpos_y += ScaleByZoom(delta.y, vp->zoom);
|
||||
this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x;
|
||||
this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
|
||||
};
|
||||
}
|
||||
|
||||
virtual void OnMouseWheel(int wheel)
|
||||
{
|
||||
|
@ -721,7 +721,7 @@ void ShowErrorMessage(StringID summary_msg, StringID detailed_msg, WarningLevel
|
||||
switch (wl) {
|
||||
case WL_WARNING: IConsolePrint(CC_WARNING, buf); break;
|
||||
default: IConsoleError(buf); break;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
bool no_timeout = wl == WL_CRITICAL;
|
||||
|
@ -151,7 +151,7 @@ public:
|
||||
tile = F.m_new_tile;
|
||||
trackdir = new_td;
|
||||
if (tiles > MAX_MAP_SIZE) break;
|
||||
};
|
||||
}
|
||||
|
||||
/* save end of segment back to the node */
|
||||
n.m_segment_last_tile = tile;
|
||||
|
@ -1545,7 +1545,7 @@ public:
|
||||
{
|
||||
this->InitNested(desc, TRANSPORT_RAIL);
|
||||
this->OnInvalidateData();
|
||||
};
|
||||
}
|
||||
|
||||
virtual void SetStringParameters(int widget) const
|
||||
{
|
||||
@ -1782,7 +1782,7 @@ struct BuildRailWaypointWindow : PickerWindowBase {
|
||||
|
||||
matrix->SetCount(_waypoint_count);
|
||||
matrix->SetClicked(_cur_waypoint_type);
|
||||
};
|
||||
}
|
||||
|
||||
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
|
||||
{
|
||||
|
@ -1530,7 +1530,7 @@ static bool LoadTTDPatchExtraChunks(LoadgameState *ls, int num)
|
||||
DEBUG(oldloader, 3, "TTDPatch game using GRF file with GRFID %0X", BSWAP32(c->ident.grfid));
|
||||
}
|
||||
len -= 5;
|
||||
};
|
||||
}
|
||||
|
||||
/* Append static NewGRF configuration */
|
||||
AppendStaticGRFConfigs(&_grfconfig);
|
||||
|
@ -145,7 +145,7 @@ public:
|
||||
this->padding_right = right;
|
||||
this->padding_bottom = bottom;
|
||||
this->padding_left = left;
|
||||
};
|
||||
}
|
||||
|
||||
FORCEINLINE uint GetHorizontalStepSize(SizingType sizing) const;
|
||||
FORCEINLINE uint GetVerticalStepSize(SizingType sizing) const;
|
||||
|
@ -741,7 +741,7 @@ public:
|
||||
PickerWindowBase(Window *parent) : Window()
|
||||
{
|
||||
this->parent = parent;
|
||||
};
|
||||
}
|
||||
|
||||
virtual ~PickerWindowBase();
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user