diff options
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 1d02660cf7..4309e39021 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -53,6 +53,13 @@ std::string VideoSoftware::GetDisplayName() const return _trans("Software Renderer"); } +std::optional<std::string> VideoSoftware::GetWarningMessage() const +{ + return _trans("The software renderer is significantly slower than other " + "backends and is only recommended for debugging purposes.\n\nDo you " + "really want to enable software rendering? If unsure, select 'No'."); +} + void VideoSoftware::InitBackendInfo() { g_Config.backend_info.api_type = APIType::Nothing; |
