diff --git a/src/company_gui.cpp b/src/company_gui.cpp index f57b989c3f..f907115fc2 100644 --- a/src/company_gui.cpp +++ b/src/company_gui.cpp @@ -191,13 +191,13 @@ static void DrawYearColumn(const Rect &r, int year, const Money (*tbl)[EXPENSES_ subtotal = 0; GfxFillRect(r.left, y, r.right, y, 215); y += EXP_LINESPACE; - DrawPrice(cost, r.left, r.right, y + EXP_LINESPACE); + DrawPrice(cost, r.left, r.right, y); y += FONT_HEIGHT_NORMAL + EXP_BLOCKSPACE; } else { Money cost = (*tbl)[et]; subtotal += cost; sum += cost; - if (cost != 0) DrawPrice(cost, r.left, r.right, y + EXP_LINESPACE); + if (cost != 0) DrawPrice(cost, r.left, r.right, y); y += FONT_HEIGHT_NORMAL; } }