(svn r12090) -Codechange : removed a magic number and code style application on enum ExpensesType

This commit is contained in:
belugas
2008-02-09 02:49:33 +00:00
parent 9343ad44fd
commit cf9447c15b
3 changed files with 15 additions and 14 deletions

View File

@@ -46,7 +46,7 @@ static void DoSelectPlayerFace(PlayerID player, bool show_big);
static void DrawPlayerEconomyStats(const Player *p, byte mode)
{
int x, y, i, j, year;
const Money (*tbl)[13];
const Money (*tbl)[EXPENSES_END];
Money sum, cost;
StringID str;