mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
ux: Instruct the user to delete the dlls from the installation folder.
This commit is contained in:
parent
98a58daf57
commit
6155207407
1 changed files with 5 additions and 1 deletions
|
@ -52,15 +52,19 @@ class WIN32_module_verifier
|
||||||
const std::wstring_view s = path;
|
const std::wstring_view s = path;
|
||||||
if (s.find(system_root) != 0)
|
if (s.find(system_root) != 0)
|
||||||
{
|
{
|
||||||
|
const auto module_name = wchar_to_utf8(module.name);
|
||||||
const auto error_message = fmt::format(
|
const auto error_message = fmt::format(
|
||||||
"<p>"
|
"<p>"
|
||||||
"The module <strong>%s</strong> was incorrectly installed.<br>"
|
"The module <strong>%s</strong> was incorrectly installed.<br>"
|
||||||
"This module is part of the <strong>%s</strong> package.<br>"
|
"This module is part of the <strong>%s</strong> package.<br>"
|
||||||
|
"Install this package, then delete <strong>%s</strong> from rpcs3's installation directory.<br>"
|
||||||
|
"<br>"
|
||||||
"You can install this package from this URL:<br>"
|
"You can install this package from this URL:<br>"
|
||||||
"<a href='%s'>%s</a>"
|
"<a href='%s'>%s</a>"
|
||||||
"</p>",
|
"</p>",
|
||||||
wchar_to_utf8(module.name),
|
module_name,
|
||||||
module.package_name,
|
module.package_name,
|
||||||
|
module_name,
|
||||||
module.dl_link,
|
module.dl_link,
|
||||||
module.dl_link
|
module.dl_link
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue