# HG changeset patch # User truelight # Date 2004-08-10 19:03:16 # Node ID 00e24846c38b4441350a60ad3a9c60be6cff4b3d # Parent dd4e824e4f240902e84b9c4b0b2587c7078943af (svn r15) -Fix: loan increase/decrease showed 1 instead of 10000 diff --git a/player_gui.c b/player_gui.c --- a/player_gui.c +++ b/player_gui.c @@ -135,7 +135,7 @@ static void PlayerFinancesWndProc(Window SET_DPARAM16(0, p->name_1); SET_DPARAM32(1, p->name_2); SET_DPARAM16(2, GetPlayerNameString((byte)w->window_number, 3)); - SET_DPARAM32(4, 10000); + SET_DPARAM32(3, 10000); DrawWindowWidgets(w); DrawPlayerEconomyStats(p, (byte)WP(w,def_d).data_1);