fix bug where ep3 players can't pause

This commit is contained in:
Martin Michelsen
2022-03-08 16:33:50 -08:00
parent d30a3220c8
commit b8ab8551b6
2 changed files with 16 additions and 6 deletions
+3 -2
View File
@@ -5,6 +5,7 @@
#include <string>
#include <vector>
#include <phosg/Encoding.hh>
#include "Version.hh"
@@ -260,7 +261,7 @@ struct PlayerAccountDataBB {
struct PlayerLobbyDataPC {
uint32_t player_tag;
uint32_t guild_card;
uint32_t ip_address;
be_uint32_t ip_address;
uint32_t client_id;
char16_t name[16];
};
@@ -268,7 +269,7 @@ struct PlayerLobbyDataPC {
struct PlayerLobbyDataGC {
uint32_t player_tag;
uint32_t guild_card;
uint32_t ip_address;
be_uint32_t ip_address;
uint32_t client_id;
char name[16];
};