From d54409b6b569939d8f5ec20a508bb2a0a50b4f6b Mon Sep 17 00:00:00 2001 From: FlightlessMango Date: Sun, 6 Dec 2020 04:51:20 +0100 Subject: [PATCH] Don't need vulkan hooking in kiero --- src/win/main.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/win/main.cpp b/src/win/main.cpp index 3a386ef..8bf8169 100644 --- a/src/win/main.cpp +++ b/src/win/main.cpp @@ -50,10 +50,6 @@ void renderTypes() { { render_types.push_back(kiero::RenderType::OpenGL); } - if (::GetModuleHandle(KIERO_TEXT("vulkan-1.dll")) != NULL) - { - render_types.push_back(kiero::RenderType::Vulkan); - } for (auto& _type : render_types) kiero::init(_type); }