diff --git a/src/main_gui.cpp b/src/main_gui.cpp --- a/src/main_gui.cpp +++ b/src/main_gui.cpp @@ -92,7 +92,7 @@ void HandleOnEditText(const char *str) #ifdef ENABLE_NETWORK case 3: { // Give money, you can only give money in excess of loan const Player *p = GetPlayer(_current_player); - int32 money = min(p->money64 - p->current_loan, atoi(str) / _currency->rate); + int32 money = min(p->player_money - p->current_loan, atoi(str) / _currency->rate); money = clamp(money, 0, 20000000); // Clamp between 20 million and 0 @@ -2208,7 +2208,7 @@ static void StatusBarWndProc(Window *w, if (p != NULL) { /* Draw player money */ - SetDParam64(0, p->money64); + SetDParam64(0, p->player_money); DrawStringCentered(570, 1, p->player_money >= 0 ? STR_0004 : STR_0005, 0); }