summaryrefslogtreecommitdiff
path: root/network.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-06 08:18:00 +0000
committertron <tron@openttd.org>2005-02-06 08:18:00 +0000
commitd3f84347ac934fa3b86f55df4dee135f6e1259ee (patch)
treee7f49d247bb563381139e0a730ab1ece0b430e89 /network.c
parent72b539b05e9fb05e40555ab909c502900af26df6 (diff)
downloadopenttd-d3f84347ac934fa3b86f55df4dee135f6e1259ee.tar.xz
(svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
Diffstat (limited to 'network.c')
-rw-r--r--network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/network.c b/network.c
index 5b6a46427..2a72de771 100644
--- a/network.c
+++ b/network.c
@@ -1,5 +1,6 @@
#include "stdafx.h"
#include "debug.h"
+#include "strings.h"
#include "map.h"
#include "network_data.h"
@@ -44,7 +45,6 @@ static uint16 _network_client_index = NETWORK_SERVER_INDEX + 1;
/* Some externs / forwards */
extern void ShowJoinStatusWindow(void);
extern void StateGameLoop(void);
-extern uint GetCurrentCurrencyRate(void);
// Function that looks up the CI for a given client-index
NetworkClientInfo *NetworkFindClientInfoFromIndex(uint16 client_index)