diff options
| author | Sepalani <sepalani@hotmail.fr> | 2024-01-27 02:15:31 +0400 |
|---|---|---|
| committer | Sepalani <sepalani@hotmail.fr> | 2024-02-03 10:12:07 +0400 |
| commit | 1831a8cec51fa425249d46a97fcbc0d1188ef004 (patch) | |
| tree | 77ea2f7f9d88f746d4a3547976219bd9e237bd6a /Source/Core | |
| parent | abbc4bd0bdff1a792bc0f6e912a022c17bd8668a (diff) | |
BBA/HLE: Add missing PSH flag
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp index 84c47c3f3c..04bb763407 100644 --- a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp +++ b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp @@ -275,7 +275,7 @@ CEXIETHERNET::BuiltInBBAInterface::TryGetDataFromSocket(StackRef* ref) if (datasize > 0) { Common::TCPPacket packet(ref->bba_mac, ref->my_mac, ref->from, ref->to, ref->seq_num, - ref->ack_num, TCP_FLAG_ACK); + ref->ack_num, TCP_FLAG_ACK | TCP_FLAG_PSH); packet.data = std::vector<u8>(buffer.begin(), buffer.begin() + datasize); // build buffer |
