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.
This commit is contained in:
Dentomologist
2025-10-13 17:38:20 -07:00
parent e0e2c7461b
commit 5b4df5ae98
16 changed files with 31 additions and 31 deletions
@@ -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