(svn r23792) -Feature [FS#4958]: move 'refitable to' text above custom newgrf text in build vehicle gui

This commit is contained in:
yexo 2012-01-12 19:23:00 +00:00
parent b1a830491a
commit 21c2f9377d
1 changed files with 2 additions and 1 deletions

View File

@ -847,9 +847,10 @@ int DrawVehiclePurchaseInfo(int left, int right, int y, EngineID engine_number)
y += FONT_HEIGHT_NORMAL;
}
if (refittable) y = ShowRefitOptionsList(left, right, y, engine_number);
/* Additional text from NewGRF */
y = ShowAdditionalText(left, right, y, engine_number);
if (refittable) y = ShowRefitOptionsList(left, right, y, engine_number);
return y;
}