diff --git a/app/src/main/cpp/skyline/gpu/presentation_engine.cpp b/app/src/main/cpp/skyline/gpu/presentation_engine.cpp index 5e582ac4..d11c1463 100644 --- a/app/src/main/cpp/skyline/gpu/presentation_engine.cpp +++ b/app/src/main/cpp/skyline/gpu/presentation_engine.cpp @@ -361,7 +361,7 @@ namespace skyline::gpu { auto vkImages{vkSwapchain->getImages()}; if (vkImages.size() > MaxSwapchainImageCount) - throw exception("Swapchain has higher image count ({}) than maximum slot count ({})", minImageCount, MaxSwapchainImageCount); + LOGE("Swapchain has higher image count ({}) than maximum slot count ({})", vkImages.size(), MaxSwapchainImageCount); for (size_t index{}; index < vkImages.size(); index++) { auto &slot{images[index]};