summaryrefslogtreecommitdiff
path: root/src/network/core/core.cpp
diff options
context:
space:
mode:
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();