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 );