mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 02:19:41 +00:00
(svn r25921) -Fix [FS#5763]: Goal and progress columns were out of sync for company specific goals, if there were no global goals.
This commit is contained in:
parent
7fbe7895ef
commit
7480a00ce0
@ -219,8 +219,8 @@ struct GoalListWindow : public Window {
|
||||
}
|
||||
}
|
||||
|
||||
if (column == GC_GOAL && num == 0) {
|
||||
if (IsInsideMM(pos, 0, cap)) {
|
||||
if (num == 0) {
|
||||
if (column == GC_GOAL && IsInsideMM(pos, 0, cap)) {
|
||||
StringID str = !global_section && this->window_number == INVALID_COMPANY ? STR_GOALS_SPECTATOR_NONE : STR_GOALS_NONE;
|
||||
DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, str);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user