diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp index 170864de6e..4c29e7e93c 100644 --- a/src/industry_gui.cpp +++ b/src/industry_gui.cpp @@ -960,7 +960,7 @@ public: if (i->produced_cargo[j] == INVALID_CARGO) continue; if (first) { if (has_accept) ir.top += WidgetDimensions::scaled.vsep_wide; - DrawString(ir, STR_INDUSTRY_VIEW_PRODUCTION_LAST_MONTH_TITLE); + DrawString(ir, EconTime::UsingWallclockUnits() ? STR_INDUSTRY_VIEW_PRODUCTION_LAST_MINUTE_TITLE : STR_INDUSTRY_VIEW_PRODUCTION_LAST_MONTH_TITLE); ir.top += GetCharacterHeight(FS_NORMAL); if (this->editable == EA_RATE) this->production_offset_y = ir.top; first = false;