mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-04 21:33:51 +00:00
(svn r17420) -Codechange: replace assert() by assert_compile() where possible
This commit is contained in:
parent
ae9441aa46
commit
0bfea0646c
@ -738,7 +738,7 @@ void StartupEconomy()
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
assert(sizeof(_price) == NUM_PRICES * sizeof(Money));
|
assert_compile(sizeof(_price) == NUM_PRICES * sizeof(Money));
|
||||||
|
|
||||||
/* Setup price bases */
|
/* Setup price bases */
|
||||||
for (i = 0; i < NUM_PRICES; i++) {
|
for (i = 0; i < NUM_PRICES; i++) {
|
||||||
|
@ -213,7 +213,7 @@ protected:
|
|||||||
|
|
||||||
/* the colours and cost array of GraphDrawer must accomodate
|
/* the colours and cost array of GraphDrawer must accomodate
|
||||||
* both values for cargo and companies. So if any are higher, quit */
|
* both values for cargo and companies. So if any are higher, quit */
|
||||||
assert(GRAPH_MAX_DATASETS >= (int)NUM_CARGO && GRAPH_MAX_DATASETS >= (int)MAX_COMPANIES);
|
assert_compile(GRAPH_MAX_DATASETS >= (int)NUM_CARGO && GRAPH_MAX_DATASETS >= (int)MAX_COMPANIES);
|
||||||
assert(this->num_vert_lines > 0);
|
assert(this->num_vert_lines > 0);
|
||||||
|
|
||||||
byte grid_colour = _colour_gradient[COLOUR_GREY][4];
|
byte grid_colour = _colour_gradient[COLOUR_GREY][4];
|
||||||
@ -1244,7 +1244,7 @@ static NWidgetBase *MakePerformanceDetailPanels(int *biggest_index)
|
|||||||
STR_PERFORMANCE_DETAIL_TOTAL_TOOLTIP,
|
STR_PERFORMANCE_DETAIL_TOTAL_TOOLTIP,
|
||||||
};
|
};
|
||||||
|
|
||||||
assert(lengthof(performance_tips) == SCORE_END - SCORE_BEGIN);
|
assert_compile(lengthof(performance_tips) == SCORE_END - SCORE_BEGIN);
|
||||||
|
|
||||||
NWidgetVertical *vert = new NWidgetVertical();
|
NWidgetVertical *vert = new NWidgetVertical();
|
||||||
for (int widnum = PRW_SCORE_FIRST; widnum <= PRW_SCORE_LAST; widnum++) {
|
for (int widnum = PRW_SCORE_FIRST; widnum <= PRW_SCORE_LAST; widnum++) {
|
||||||
|
@ -788,7 +788,7 @@ struct TooltipsWindow : public Window
|
|||||||
Window(x, y, width, height, WC_TOOLTIPS, widget)
|
Window(x, y, width, height, WC_TOOLTIPS, widget)
|
||||||
{
|
{
|
||||||
this->string_id = str;
|
this->string_id = str;
|
||||||
assert(sizeof(this->params[0]) == sizeof(params[0]));
|
assert_compile(sizeof(this->params[0]) == sizeof(params[0]));
|
||||||
assert(paramcount <= lengthof(this->params));
|
assert(paramcount <= lengthof(this->params));
|
||||||
memcpy(this->params, params, sizeof(this->params[0]) * paramcount);
|
memcpy(this->params, params, sizeof(this->params[0]) * paramcount);
|
||||||
this->paramcount = paramcount;
|
this->paramcount = paramcount;
|
||||||
|
@ -5652,7 +5652,7 @@ static void InitNewGRFFile(const GRFConfig *config, int sprite_offset)
|
|||||||
newfile->traininfo_vehicle_width = TRAININFO_DEFAULT_VEHICLE_WIDTH;
|
newfile->traininfo_vehicle_width = TRAININFO_DEFAULT_VEHICLE_WIDTH;
|
||||||
|
|
||||||
/* Copy the initial parameter list */
|
/* Copy the initial parameter list */
|
||||||
assert(lengthof(newfile->param) == lengthof(config->param) && lengthof(config->param) == 0x80);
|
assert_compile(lengthof(newfile->param) == lengthof(config->param) && lengthof(config->param) == 0x80);
|
||||||
newfile->param_end = config->num_params;
|
newfile->param_end = config->num_params;
|
||||||
memcpy(newfile->param, config->param, sizeof(newfile->param));
|
memcpy(newfile->param, config->param, sizeof(newfile->param));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user