From adcacc11195f23978363af8824d132d51a220804 Mon Sep 17 00:00:00 2001 From: RipleyTom Date: Mon, 8 Dec 2025 00:03:49 +0100 Subject: [PATCH] Remove RPCN test server --- rpcs3/Emu/NP/rpcn_config.cpp | 5 ++--- rpcs3/Emu/NP/rpcn_config.h | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/rpcs3/Emu/NP/rpcn_config.cpp b/rpcs3/Emu/NP/rpcn_config.cpp index b489d7d924..204091d295 100644 --- a/rpcs3/Emu/NP/rpcn_config.cpp +++ b/rpcs3/Emu/NP/rpcn_config.cpp @@ -190,9 +190,8 @@ bool cfg_rpcn::add_host(std::string_view new_description, std::string_view new_h bool cfg_rpcn::del_host(std::string_view del_description, std::string_view del_host) { - // Do not delete default servers - if ((del_description == "Official RPCN Server" && del_host == "np.rpcs3.net") || - (del_description == "RPCN Test Server" && del_host == "test-np.rpcs3.net")) + // Do not delete default server + if (del_description == "Official RPCN Server" && del_host == "np.rpcs3.net") { return true; } diff --git a/rpcs3/Emu/NP/rpcn_config.h b/rpcs3/Emu/NP/rpcn_config.h index a94eb053b7..0a8c7c9cc5 100644 --- a/rpcs3/Emu/NP/rpcn_config.h +++ b/rpcs3/Emu/NP/rpcn_config.h @@ -9,7 +9,7 @@ struct cfg_rpcn : cfg::node cfg::string npid{this, "NPID", ""}; cfg::string password{this, "Password", ""}; cfg::string token{this, "Token", ""}; - cfg::string hosts{this, "Hosts", "Official RPCN Server|np.rpcs3.net|||RPCN Test Server|test-np.rpcs3.net"}; + cfg::string hosts{this, "Hosts", "Official RPCN Server|np.rpcs3.net"}; cfg::_bool ipv6_support{this, "IPv6 support", true}; void load();