From cb2d7f800a9fc276b96fd0927fa6d8ec9f5a31c8 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 29 May 2020 00:05:08 +0200 Subject: Implemented port-specific wrappers and logic for gdb stub --- libpcsxcore/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libpcsxcore/debug.c') diff --git a/libpcsxcore/debug.c b/libpcsxcore/debug.c index 463df73b..ecc9edc7 100644 --- a/libpcsxcore/debug.c +++ b/libpcsxcore/debug.c @@ -397,7 +397,7 @@ void DebugVSync() { if (client_socket < 1) { - client_socket = GetClient(server_socket); + client_socket = GetClient(server_socket, 0); if (client_socket > 0) { @@ -478,7 +478,7 @@ void ProcessDebug() { if (client_socket < 1) { - client_socket = GetClient(server_socket); + client_socket = GetClient(server_socket, 0); if (client_socket > 0) { -- cgit v1.2.3