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-09-23 14:42:59 -07:00
parent e0e2c7461b
commit 5b4df5ae98
16 changed files with 31 additions and 31 deletions

View File

@@ -28,9 +28,9 @@
namespace DX11
{
std::string VideoBackend::GetName() const
std::string VideoBackend::GetConfigName() const
{
return NAME;
return CONFIG_NAME;
}
std::string VideoBackend::GetDisplayName() const