code: Address build issues

This commit is contained in:
GPUCode
2022-11-20 12:32:35 +02:00
parent 8b8cee1a5a
commit d1039d9a81
9 changed files with 28 additions and 23 deletions

View File

@ -53,7 +53,7 @@ ResultStatus Init(Frontend::EmuWindow& emu_window, Frontend::EmuWindow* secondar
g_renderer = std::make_unique<OpenGL::RendererOpenGL>(emu_window, secondary_window);
break;
case Settings::GraphicsAPI::Vulkan:
g_renderer = std::make_unique<Vulkan::RendererVulkan>(emu_window);
g_renderer = std::make_unique<Vulkan::RendererVulkan>(emu_window, secondary_window);
break;
default:
LOG_CRITICAL(Render, "Invalid graphics API enum value {}", graphics_api);