main_gui.c
changeset 815 eb9408648620
parent 813 640a517dc129
child 867 dffd33233237
--- a/main_gui.c	Tue Dec 28 09:29:40 2004 +0000
+++ b/main_gui.c	Tue Dec 28 09:31:38 2004 +0000
@@ -88,7 +88,7 @@
 		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;