1
0
Fork 0

Fix: x-axis direction of industry production graph

pull/13062/head
Jonathan G Rennison 2024-11-06 21:24:27 +00:00
parent 884b93c4c0
commit 134d5d695d
1 changed files with 3 additions and 3 deletions

View File

@ -199,7 +199,7 @@ protected:
/* These values are used if the graph is being plotted against values /* These values are used if the graph is being plotted against values
* rather than the dates specified by month and year. */ * rather than the dates specified by month and year. */
uint16_t x_values_start; uint16_t x_values_start;
int16_t x_values_increment; uint16_t x_values_increment;
StringID format_str_y_axis; StringID format_str_y_axis;
uint8_t colours[GRAPH_MAX_DATASETS]; uint8_t colours[GRAPH_MAX_DATASETS];
@ -1429,8 +1429,8 @@ struct IndustryProductionGraphWindow : BaseGraphWindow {
this->num_on_x_axis = GRAPH_NUM_MONTHS; this->num_on_x_axis = GRAPH_NUM_MONTHS;
this->num_vert_lines = GRAPH_NUM_MONTHS; this->num_vert_lines = GRAPH_NUM_MONTHS;
this->month_increment = 1; this->month_increment = 1;
this->x_values_start = GRAPH_NUM_MONTHS; this->x_values_start = ECONOMY_MONTH_MINUTES;
this->x_values_increment = -ECONOMY_MONTH_MINUTES; this->x_values_increment = ECONOMY_MONTH_MINUTES;
this->draw_dates = !TimerGameEconomy::UsingWallclockUnits(); this->draw_dates = !TimerGameEconomy::UsingWallclockUnits();
this->CreateNestedTree(); this->CreateNestedTree();