Bonk people who select Vulkan as the renderer

This commit is contained in:
wheremyfoodat 2023-07-18 22:33:59 +03:00
parent 6860ccc396
commit 31d1c6ff3f

View file

@ -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;