diff options
author | Liam <[email protected]> | 2022-11-22 19:14:46 -0500 |
---|---|---|
committer | Liam <[email protected]> | 2022-11-27 14:58:28 -0500 |
commit | 2956a33463df8fe97819df2b08d31834eaeed442 (patch) | |
tree | eed76f1f0a30830f673cab6aae36beb8127a0288 /src/yuzu/bootmanager.cpp | |
parent | 168c9ee3415bf6400ef0b0cc0eb2dfa73fac2464 (diff) | |
download | yuzu-mainline-2956a33463df8fe97819df2b08d31834eaeed442.tar.gz yuzu-mainline-2956a33463df8fe97819df2b08d31834eaeed442.zip |
Vulkan: update initialization
Co-authored-by: bylaws <[email protected]>
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index d88efacd7..bbb3ee553 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -265,6 +265,10 @@ static Core::Frontend::WindowSystemType GetWindowSystemType() { return Core::Frontend::WindowSystemType::X11; else if (platform_name == QStringLiteral("wayland")) return Core::Frontend::WindowSystemType::Wayland; + else if (platform_name == QStringLiteral("cocoa")) + return Core::Frontend::WindowSystemType::Cocoa; + else if (platform_name == QStringLiteral("android")) + return Core::Frontend::WindowSystemType::Android; LOG_CRITICAL(Frontend, "Unknown Qt platform!"); return Core::Frontend::WindowSystemType::Windows; |