From 86937506c91cd438a85cd91301896da02a9c6486 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Fri, 21 Jun 2019 18:35:31 -0700 Subject: [PATCH] fix command size of gc game join --- SendCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SendCommands.cc b/SendCommands.cc index 0e891016..56c1e42a 100644 --- a/SendCommands.cc +++ b/SendCommands.cc @@ -1386,7 +1386,7 @@ static void send_join_game_gc(shared_ptr c, shared_ptr l) { } // player is only sent in ep3 games - size_t data_size = (l->flags & LobbyFlag::Episode3) ? 0x1184 : 0x0114; + size_t data_size = (l->flags & LobbyFlag::Episode3) ? 0x1184 : 0x0110; send_command(c, 0x64, player_count, &cmd, data_size); }