summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorOatmealDome <OatmealDome@users.noreply.github.com>2023-07-11 20:23:16 -0400
committerGitHub <noreply@github.com>2023-07-11 20:23:16 -0400
commit423c7c58cd8fe78eb89a3ab434cfbc958a4eef07 (patch)
treedb7332dc4ab77e4ed62d42d770f89db44b710341 /Source
parent559611d9a4106482fce6cd91de58fc409c6bd5a9 (diff)
parent5acebc71c47893ead1b449863a4c58199c89d53d (diff)
Merge pull request #12042 from JosJuice/logic-op-no-win7
D3D: Remove Windows 7 mention in logic ops warning
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/VideoBackends/D3D/D3DMain.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/D3D/D3DMain.cpp b/Source/Core/VideoBackends/D3D/D3DMain.cpp
index 5ea3014c6c..9a25c1abde 100644
--- a/Source/Core/VideoBackends/D3D/D3DMain.cpp
+++ b/Source/Core/VideoBackends/D3D/D3DMain.cpp
@@ -42,7 +42,7 @@ std::optional<std::string> VideoBackend::GetWarningMessage() const
{
std::optional<std::string> result;
- // If user is on Win7, show a warning about partial DX11.1 support
+ // If relevant, show a warning about partial DX11.1 support
// This is being called BEFORE FillBackendInfo is called for this backend,
// so query for logic op support manually
bool supportsLogicOp = false;
@@ -54,10 +54,11 @@ std::optional<std::string> VideoBackend::GetWarningMessage() const
if (!supportsLogicOp)
{
- result = _trans("Direct3D 11 renderer requires support for features not supported by your "
- "system configuration. This is most likely because you are using Windows 7. "
- "You may still use this backend, but you might encounter graphical artifacts."
- "\n\nDo you really want to switch to Direct3D 11? If unsure, select 'No'.");
+ result = _trans("The Direct3D 11 renderer requires support for features not supported by your "
+ "system configuration. You may still use this backend, but you will encounter "
+ "graphical artifacts in certain games.\n"
+ "\n"
+ "Do you really want to switch to Direct3D 11? If unsure, select 'No'.");
}
return result;