1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Fix passing missing parameter

This commit is contained in:
Matt
2020-08-03 00:46:44 +02:00
parent 28dcaeae2f
commit 07b343813a

View File

@@ -45,7 +45,7 @@ public:
void QueuePacket(const NetworkPacket& packet, bool front = false)
{
auto copy = packet;
return QueuePacket(std::move(copy));
return QueuePacket(std::move(copy), front);
}
void SendQueuedPackets();