summaryrefslogtreecommitdiff
path: root/main_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-28 09:31:38 +0000
committertruelight <truelight@openttd.org>2004-12-28 09:31:38 +0000
commit0f856ad408e07d1c7b182a72ebeaff7e597109a6 (patch)
tree02a9337df449d22d70e253554f7bbeed511f7f96 /main_gui.c
parent968c9ffe609b66bd271bb67afd1a5280b3111f10 (diff)
downloadopenttd-0f856ad408e07d1c7b182a72ebeaff7e597109a6.tar.xz
(svn r1286) -Fix: oeps, I clamp'd some numbers wrong :$
Diffstat (limited to 'main_gui.c')
-rw-r--r--main_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main_gui.c b/main_gui.c
index 787390870..ccdec8f47 100644
--- a/main_gui.c
+++ b/main_gui.c
@@ -88,7 +88,7 @@ void HandleOnEditText(WindowEvent *e) {
int32 money = atoi(e->edittext.str) / GetCurrentCurrencyRate();
char msg[100];
- money = clamp(money, 0, 0xFFFFFFFF); // Clamp between 4 billion and 0
+ money = clamp(money, 0, 0xFFFFFF); // Clamp between 16 million and 0
// Give 'id' the money, and substract it from ourself
if (!DoCommandP(0, money, id, NULL, CMD_GIVE_MONEY)) break;