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:
Sage King
2022-08-07 18:39:07 -06:00
parent 978b6a8724
commit 66276ac61b
3 changed files with 3 additions and 8 deletions

View File

@ -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;