1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00

Fix small bug in netconsole

Changed member params but forgot to change thread invocation params
This commit is contained in:
Amos 2022-02-06 17:07:27 +01:00
parent d555c39434
commit bba0120e88

@ -71,7 +71,7 @@ bool CNetCon::Init(void)
return false;
}
std::thread tRecv(&CNetCon::Recv, this, this->pSocket);
std::thread tRecv(&CNetCon::Recv, this);
tRecv.detach();
return true;