summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas den Hollander <ThomasdenH@users.noreply.github.com>2019-02-03 14:39:36 +0100
committerCharles Pigott <charlespigott@googlemail.com>2019-02-12 19:26:21 +0000
commit412e6132b60ad5db8912643befb0b895f4e11710 (patch)
tree8d5b39a7e0d8086f2aebebe9ae5cbc5f9e3541f4
parent6b5ebe2b098994abd9514ff59b64bae7d0313fa6 (diff)
downloadopenttd-412e6132b60ad5db8912643befb0b895f4e11710.tar.xz
Fix: CompanyEconomy documentation
Company income was described as an unsigned integer, but it should be signed.
-rw-r--r--src/network/core/tcp_admin.h2
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).