mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix broken check for intel macs (for auto-disabling Vulkan)
This commit is contained in:
parent
5273d993bf
commit
27a60517af
1 changed files with 1 additions and 1 deletions
|
@ -343,7 +343,7 @@ static VulkanLibraryHandle VulkanLoadLibrary(std::string *errorString) {
|
|||
return nullptr;
|
||||
#elif PPSSPP_PLATFORM(UWP)
|
||||
return nullptr;
|
||||
#elif PPSSPP_PLATFORM(MACOS) && PPSSPP_ARCH(AMD64)
|
||||
#elif PPSSPP_PLATFORM(MAC) && PPSSPP_ARCH(AMD64)
|
||||
// Disable Vulkan on Mac/x86. Too many configurations that don't work with MoltenVK
|
||||
// for whatever reason.
|
||||
return nullptr;
|
||||
|
|
Loading…
Add table
Reference in a new issue