mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-16 23:37:41 -05:00
DoAllPlayersHaveSameGame returns correct result instead of always true
SendGameStatus() was writing SyncIdentifierComparison as a u32 but the server reads it as a u8 enum, so the server always gets 0 (SameGame). This bug was introduced in commit 66276ac.
This commit is contained in:
@@ -2505,7 +2505,7 @@ void NetPlayClient::SendGameStatus()
|
||||
}
|
||||
}
|
||||
|
||||
packet << static_cast<u32>(result);
|
||||
packet << result;
|
||||
Send(packet);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user