From 0ee28f3433586d9d323c4ab7c8e053b9e4492b5c Mon Sep 17 00:00:00 2001 From: TheLastRar Date: Sun, 23 Oct 2022 17:49:00 +0100 Subject: [PATCH] DEV9: Sockets: Log correct UDP port --- pcsx2/DEV9/sockets.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2/DEV9/sockets.cpp b/pcsx2/DEV9/sockets.cpp index 4bd61c84fa..a6adfba676 100644 --- a/pcsx2/DEV9/sockets.cpp +++ b/pcsx2/DEV9/sockets.cpp @@ -591,7 +591,7 @@ bool SocketAdapter::SendUDP(ConnectionKey Key, IP_Packet* ipPkt) fKey.ps2Port = udp.sourcePort; fKey.srvPort = 0; - Console.WriteLn("DEV9: Socket: Creating New UDPFixedPort with port %d", udp.sourcePort); + Console.WriteLn("DEV9: Socket: Creating New UDPFixedPort with port %d", udp.destinationPort); fPort = new UDP_FixedPort(fKey, adapterIP, udp.sourcePort); fPort->AddConnectionClosedHandler([&](BaseSession* session) { HandleFixedPortClosed(session); }); @@ -603,14 +603,14 @@ bool SocketAdapter::SendUDP(ConnectionKey Key, IP_Packet* ipPkt) fixedUDPPorts.Add(udp.sourcePort, fPort); } - Console.WriteLn("DEV9: Socket: Creating New UDP Connection from FixedPort %d", udp.sourcePort); + Console.WriteLn("DEV9: Socket: Creating New UDP Connection from FixedPort %d", udp.destinationPort); s = fPort->NewClientSession(Key, ipPkt->destinationIP == dhcpServer.broadcastIP || ipPkt->destinationIP == IP_Address{255, 255, 255, 255}, (ipPkt->destinationIP.bytes[0] & 0xF0) == 0xE0); } else { - Console.WriteLn("DEV9: Socket: Creating New UDP Connection to %d", udp.sourcePort); + Console.WriteLn("DEV9: Socket: Creating New UDP Connection to %d", udp.destinationPort); s = new UDP_Session(Key, adapterIP); }