summaryrefslogtreecommitdiff
path: root/player_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-08-10 19:03:16 +0000
committertruelight <truelight@openttd.org>2004-08-10 19:03:16 +0000
commite475edd548a08501dc72a947bda511a116c4f51e (patch)
tree17a828f9faeca03ecd444a0f67489839556a64d1 /player_gui.c
parent65e35eeea84d533c75911ee2b0dc93c56b984b4d (diff)
downloadopenttd-e475edd548a08501dc72a947bda511a116c4f51e.tar.xz
(svn r15) -Fix: loan increase/decrease showed 1 instead of 10000
Diffstat (limited to 'player_gui.c')
-rw-r--r--player_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player_gui.c b/player_gui.c
index 38821d5ad..497c12811 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);