diff options
author | yexo <yexo@openttd.org> | 2010-02-25 20:05:31 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2010-02-25 20:05:31 +0000 |
commit | a9c8dbc0a0e1f1fc4434cf0c83ff658ab8d9e3d9 (patch) | |
tree | be44c4af53164b9307d95a0021c276ec2b57f41c /src/network/core | |
parent | 4377b5fd44f5267f89f565e46cdb3646cf322a93 (diff) | |
download | openttd-a9c8dbc0a0e1f1fc4434cf0c83ff658ab8d9e3d9.tar.xz |
(svn r19255) -Codechange: encapsulate GRFIdentifier in GRFConfig instead of subclassing it
Diffstat (limited to 'src/network/core')
-rw-r--r-- | src/network/core/udp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/core/udp.cpp b/src/network/core/udp.cpp index e855bdfcf..4bf0c1e30 100644 --- a/src/network/core/udp.cpp +++ b/src/network/core/udp.cpp @@ -181,7 +181,7 @@ void NetworkUDPSocketHandler::Send_NetworkGameInfo(Packet *p, const NetworkGameI /* Send actual GRF Identifications */ for (c = info->grfconfig; c != NULL; c = c->next) { - if (!HasBit(c->flags, GCF_STATIC)) this->Send_GRFIdentifier(p, c); + if (!HasBit(c->flags, GCF_STATIC)) this->Send_GRFIdentifier(p, &c->ident); } } @@ -239,7 +239,7 @@ void NetworkUDPSocketHandler::Recv_NetworkGameInfo(Packet *p, NetworkGameInfo *i for (i = 0; i < num_grfs; i++) { GRFConfig *c = CallocT<GRFConfig>(1); - this->Recv_GRFIdentifier(p, c); + this->Recv_GRFIdentifier(p, &c->ident); this->HandleIncomingNetworkGameInfoGRFConfig(c); /* Append GRFConfig to the list */ |