From f806b46cc967202db3d2fbf3384d0f037c13ed8a Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 21 Jun 2007 14:32:27 +0000 Subject: (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch. --- src/network/network.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/network/network.h') diff --git a/src/network/network.h b/src/network/network.h index 6cd534ec9..c20e9b3f8 100644 --- a/src/network/network.h +++ b/src/network/network.h @@ -44,9 +44,9 @@ struct NetworkPlayerInfo { char company_name[NETWORK_NAME_LENGTH]; // Company name char password[NETWORK_PASSWORD_LENGTH]; // The password for the player Year inaugurated_year; // What year the company started in - int64 company_value; // The company value - int64 money; // The amount of money the company has - int64 income; // How much did the company earned last year + Money company_value; // The company value + Money money; // The amount of money the company has + Money income; // How much did the company earned last year uint16 performance; // What was his performance last month? bool use_password; // Is there a password uint16 num_vehicle[NETWORK_VEHICLE_TYPES]; // How many vehicles are there of this type? -- cgit v1.2.3-54-g00ecf