From 508f5030391b59583b204d58e2f18544caab6393 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sun, 16 Apr 2023 18:02:23 +0100 Subject: [PATCH] Fix station cargo graph window See: https://github.com/OpenTTD/OpenTTD/pull/10608 --- src/graph_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp index 4a51138f25..8fd39e67d1 100644 --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -1480,7 +1480,7 @@ struct StationCargoGraphWindow final : BaseGraphWindow { this->num_on_x_axis = MAX_STATION_CARGO_HISTORY_DAYS; // Four weeks this->num_vert_lines = MAX_STATION_CARGO_HISTORY_DAYS; - this->month = 0xFF; + this->draw_dates = false; this->x_values_start = 2; this->x_values_increment = 2;