From 31d1c6ff3f272540692db48464b31b72bd67665d Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 18 Jul 2023 22:33:59 +0300 Subject: [PATCH] Bonk people who select Vulkan as the renderer --- src/core/PICA/gpu.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/PICA/gpu.cpp b/src/core/PICA/gpu.cpp index afc2601e..d75b0ae5 100644 --- a/src/core/PICA/gpu.cpp +++ b/src/core/PICA/gpu.cpp @@ -31,6 +31,11 @@ GPU::GPU(Memory& mem, EmulatorConfig& config) : mem(mem), config(config) { break; } #endif + + case RendererType::Vulkan: { + Helpers::panic("Vulkan is not supported yet, please pick another renderer"); + } + default: { Helpers::panic("Rendering backend not supported: %s", Renderer::typeToString(config.rendererType)); break;