DEV9: Tap, remove empty blocks

This commit is contained in:
TheLastRar 2020-12-24 17:21:34 +00:00 committed by refractionpcsx2
parent b097ca9979
commit b8406a5b95
1 changed files with 0 additions and 14 deletions

View File

@ -312,13 +312,6 @@ bool TAPAdapter::recv(NetPacket* pkt)
}
else
result = GetOverlappedResult(htap, &read, &read_size, FALSE);
if (!result)
{
}
}
else
{
}
}
@ -359,13 +352,6 @@ bool TAPAdapter::send(NetPacket* pkt)
{
WaitForSingleObject(write.hEvent, INFINITE);
result = GetOverlappedResult(htap, &write, &writen, FALSE);
if (!result)
{
}
}
else
{
}
}