Merge pull request #7863 from dolphin-emu/revert-7860-vulkan_moltenvk_name

Revert "Vulkan: Show backend as Vulkan (MoltenVK) on macOS"
This commit is contained in:
spycrab 2019-03-07 02:10:04 +01:00 committed by GitHub
commit 533c3ab8b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 8 deletions

View File

@ -16,14 +16,7 @@ public:
void Shutdown() override;
std::string GetName() const override { return "Vulkan"; }
std::string GetDisplayName() const override
{
#ifdef __APPLE__
return _trans("Vulkan (MoltenVK)");
#else
return _trans("Vulkan");
#endif
}
std::string GetDisplayName() const override { return _trans("Vulkan"); }
void InitBackendInfo() override;
void PrepareWindow(const WindowSystemInfo& wsi) override;
};