summaryrefslogtreecommitdiff
path: root/network.c
diff options
context:
space:
mode:
authordominik <dominik@openttd.org>2004-09-17 20:34:51 +0000
committerdominik <dominik@openttd.org>2004-09-17 20:34:51 +0000
commitda80dabe6b649fd25ef000ab132df802eb845f65 (patch)
tree8ad8e04cfbd1a00290f2bc099be32f1a75aeab2c /network.c
parent431363908e3da8c09676447063b81dfdecf66aa8 (diff)
downloadopenttd-da80dabe6b649fd25ef000ab132df802eb845f65.tar.xz
(svn r287) Sorry, another mistake
Diffstat (limited to 'network.c')
-rw-r--r--network.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/network.c b/network.c
index 51f98c31e..dd3cff047 100644
--- a/network.c
+++ b/network.c
@@ -101,7 +101,7 @@ typedef struct CommandPacket {
TileIndex tile;
byte player;// player id, this is checked by the server.
byte when; // offset from the current max_frame value minus 1. this is set by the server.
- uint32 dp[10];
+ uint32 dp[8];
} CommandPacket;
typedef struct EventPacket {
@@ -481,7 +481,7 @@ void NetworkSendCommand(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd, Comman
qp->frame = _frame_counter_max - GetNextSyncFrame();
// calculate the amount of extra bytes.
- nump = 10;
+ nump = 8;
while ( nump != 0 && ((uint32*)_decode_parameters)[nump-1] == 0) nump--;
qp->cp.packet_length = COMMAND_PACKET_BASE_SIZE + nump * sizeof(uint32);
if (nump != 0) memcpy(qp->cp.dp, _decode_parameters, nump * sizeof(uint32));