From 61552074078eca4f1575ddff25b3e93fb7c914dd Mon Sep 17 00:00:00 2001 From: kd-11 Date: Tue, 6 Dec 2022 19:59:07 +0300 Subject: [PATCH] ux: Instruct the user to delete the dlls from the installation folder. --- rpcs3/module_verifier.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/rpcs3/module_verifier.hpp b/rpcs3/module_verifier.hpp index 48690212d6..8e30a0f64a 100644 --- a/rpcs3/module_verifier.hpp +++ b/rpcs3/module_verifier.hpp @@ -52,15 +52,19 @@ class WIN32_module_verifier const std::wstring_view s = path; if (s.find(system_root) != 0) { + const auto module_name = wchar_to_utf8(module.name); const auto error_message = fmt::format( "

" "The module %s was incorrectly installed.
" "This module is part of the %s package.
" + "Install this package, then delete %s from rpcs3's installation directory.
" + "
" "You can install this package from this URL:
" "%s" "

", - wchar_to_utf8(module.name), + module_name, module.package_name, + module_name, module.dl_link, module.dl_link );