mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-16 07:19:44 +00:00
VideoBackendBase: Clarify function name
Rename GetDefaultBackendName to GetDefaultBackendConfigName to distinguish it from the display name.
This commit is contained in:
parent
53ede795a2
commit
7b8610f4ea
6 changed files with 8 additions and 7 deletions
|
@ -222,7 +222,7 @@ static VideoBackendBase* GetDefaultVideoBackend()
|
|||
return backends.front().get();
|
||||
}
|
||||
|
||||
std::string VideoBackendBase::GetDefaultBackendName()
|
||||
std::string VideoBackendBase::GetDefaultBackendConfigName()
|
||||
{
|
||||
auto* default_backend = GetDefaultVideoBackend();
|
||||
return default_backend ? default_backend->GetName() : "";
|
||||
|
|
|
@ -64,7 +64,7 @@ public:
|
|||
u32 Video_GetQueryResult(PerfQueryType type);
|
||||
u16 Video_GetBoundingBox(int index);
|
||||
|
||||
static std::string GetDefaultBackendName();
|
||||
static std::string GetDefaultBackendConfigName();
|
||||
static const std::vector<std::unique_ptr<VideoBackendBase>>& GetAvailableBackends();
|
||||
static void ActivateBackend(const std::string& name);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue