(svn r1286) -Fix: oeps, I clamp'd some numbers wrong :$

This commit is contained in:
truelight
2004-12-28 09:31:38 +00:00
parent a5a811f767
commit c531739602
2 changed files with 2 additions and 2 deletions

View File

@@ -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;