mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Added type to SyncIndentifierComparison enum in SyncIdentifier.h in an
attempt to fix a failed call to operator<< in SendResponse()
This commit is contained in:
@ -2049,7 +2049,8 @@ void NetPlayServer::AssignNewUserAPad(const Client& player)
|
||||
{
|
||||
for (PlayerId& mapping : m_pad_map)
|
||||
{
|
||||
if (mapping == Unmapped)
|
||||
// 0 means unmapped
|
||||
if (mapping == 0)
|
||||
{
|
||||
mapping = player.pid;
|
||||
break;
|
||||
|
Reference in New Issue
Block a user