From e475edd548a08501dc72a947bda511a116c4f51e Mon Sep 17 00:00:00 2001 From: truelight Date: Tue, 10 Aug 2004 19:03:16 +0000 Subject: [PATCH] (svn r15) -Fix: loan increase/decrease showed 1 instead of 10000 --- player_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player_gui.c b/player_gui.c index 38821d5ade..497c128118 100644 --- a/player_gui.c +++ b/player_gui.c @@ -135,7 +135,7 @@ static void PlayerFinancesWndProc(Window *w, WindowEvent *e) 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);