summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2025-09-23 14:42:59 -0700
committerDentomologist <dentomologist@gmail.com>2025-10-13 17:38:20 -0700
commit5b4df5ae98494a74e954b7866df1eb4384a81641 (patch)
tree1cff9edbaa726a8502b7fda445d760d67ac444a8 /Source/Core/VideoBackends/Software/SWmain.cpp
parente0e2c7461bea830ff9010115562b50f47a7108b8 (diff)
VideoBackend: Rename GetName to GetConfigName
Make the function name more explicit and a better match for GetDisplayName. Change NAME to CONFIG_NAME while I'm at it.
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