summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2025-10-13 21:19:41 -0400
committerGitHub <noreply@github.com>2025-10-13 21:19:41 -0400
commit81f620ba97ced3c22c670a19d19d9554bd0361f9 (patch)
tree1cff9edbaa726a8502b7fda445d760d67ac444a8 /Source/Core/VideoBackends/Software/SWmain.cpp
parente0e2c7461bea830ff9010115562b50f47a7108b8 (diff)
parent5b4df5ae98494a74e954b7866df1eb4384a81641 (diff)
Merge pull request #14011 from Dentomologist/videobackend_rename_getname_to_getconfigname
VideoBackend: Rename GetName to GetConfigName
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index 51c714ad2d..2f51789ae4 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -38,9 +38,9 @@ public:
bool IsFlushed() const override { return true; }
};
-std::string VideoSoftware::GetName() const
+std::string VideoSoftware::GetConfigName() const
{
- return NAME;
+ return CONFIG_NAME;
}
std::string VideoSoftware::GetDisplayName() const