summaryrefslogtreecommitdiff
path: root/src/yuzu/bootmanager.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-11-22 19:14:46 -0500
committerLiam <byteslice@airmail.cc>2022-11-27 14:58:28 -0500
commit2956a33463df8fe97819df2b08d31834eaeed442 (patch)
treeeed76f1f0a30830f673cab6aae36beb8127a0288 /src/yuzu/bootmanager.cpp
parent168c9ee3415bf6400ef0b0cc0eb2dfa73fac2464 (diff)
Vulkan: update initialization
Co-authored-by: bylaws <bylaws@users.noreply.github.com>
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r--src/yuzu/bootmanager.cpp4
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;