Merge branch 'DenMarko-master-patch-54968' into 'master'

Update steam_game_coordinator.h

See merge request Mr_Goldberg/goldberg_emulator!50
This commit is contained in:
Roman 2023-05-09 07:57:55 +00:00
commit 9a5ac6cef4
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ EGCResults RetrieveMessage( uint32 *punMsgType, void *pubDest, uint32 cubDest, u
if (pcubMsgSize) *pcubMsgSize = outgoing_messages.front().size();
if (punMsgType && outgoing_messages.front().size() >= sizeof(uint32)) {
outgoing_messages.front().copy((char *)punMsgType, sizeof(uint32));
*punMsgType = ntohl(*punMsgType);
// *punMsgType = ntohl(*punMsgType); //in dota sends wrong TypeMsg
}
outgoing_messages.pop();