1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 12:33:17 +01:00

Minor fixes

This commit is contained in:
Michał Janiszewski
2016-02-26 20:49:01 +01:00
parent 10d25d9259
commit aa8437cb9d
13 changed files with 51 additions and 36 deletions

View File

@@ -1340,7 +1340,7 @@ void Network::Server_Send_MAP(NetworkConnection* connection)
return;
}
size_t chunksize = 1000;
size_t out_size;
size_t out_size = size;
unsigned char *compressed = util_zlib_deflate(&buffer[0], size, &out_size);
unsigned char *header;
if (compressed != NULL)