diff options
author | Thomas den Hollander <ThomasdenH@users.noreply.github.com> | 2019-02-03 14:39:36 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2019-02-12 19:26:21 +0000 |
commit | 412e6132b60ad5db8912643befb0b895f4e11710 (patch) | |
tree | 8d5b39a7e0d8086f2aebebe9ae5cbc5f9e3541f4 /src | |
parent | 6b5ebe2b098994abd9514ff59b64bae7d0313fa6 (diff) | |
download | openttd-412e6132b60ad5db8912643befb0b895f4e11710.tar.xz |
Fix: CompanyEconomy documentation
Company income was described as an unsigned integer, but it should be signed.
Diffstat (limited to 'src')
-rw-r--r-- | src/network/core/tcp_admin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/tcp_admin.h b/src/network/core/tcp_admin.h index 72c2e1160..e141a191a 100644 --- a/src/network/core/tcp_admin.h +++ b/src/network/core/tcp_admin.h @@ -363,7 +363,7 @@ protected: * uint8 ID of the company. * uint64 Money. * uint64 Loan. - * uint64 Income. + * int64 Income. * uint16 Delivered cargo (this quarter). * uint64 Company value (last quarter). * uint16 Performance (last quarter). |