summaryrefslogtreecommitdiff
path: root/src/network/core/core.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-11-30 13:38:46 +0000
committerrubidium <rubidium@openttd.org>2010-11-30 13:38:46 +0000
commitb6c2216749765e4d29fc3fa05dc1023c2c643cce (patch)
treeabc3302f27c09c0e0494f4691e5989aa514116e2 /src/network/core/core.cpp
parent9c83a8975fe93568d4a3c44bd273e846b18d8e3f (diff)
downloadopenttd-b6c2216749765e4d29fc3fa05dc1023c2c643cce.tar.xz
(svn r21358) -Codechange: make some network function names conform to coding style
Diffstat (limited to 'src/network/core/core.cpp')
-rw-r--r--src/network/core/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/core/core.cpp b/src/network/core/core.cpp
index 4c724e47e..fc1bbf954 100644
--- a/src/network/core/core.cpp
+++ b/src/network/core/core.cpp
@@ -103,7 +103,7 @@ void NetworkCoreShutdown()
* @param p the packet to write the data to
* @param grf the GRFIdentifier to serialize
*/
-void NetworkSocketHandler::Send_GRFIdentifier(Packet *p, const GRFIdentifier *grf)
+void NetworkSocketHandler::SendGRFIdentifier(Packet *p, const GRFIdentifier *grf)
{
uint j;
p->Send_uint32(grf->grfid);
@@ -117,7 +117,7 @@ void NetworkSocketHandler::Send_GRFIdentifier(Packet *p, const GRFIdentifier *gr
* @param p the packet to read the data from
* @param grf the GRFIdentifier to deserialize
*/
-void NetworkSocketHandler::Recv_GRFIdentifier(Packet *p, GRFIdentifier *grf)
+void NetworkSocketHandler::ReceiveGRFIdentifier(Packet *p, GRFIdentifier *grf)
{
uint j;
grf->grfid = p->Recv_uint32();