From afa99db9dc4ca644028730b1616664402f110549 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 16 May 2016 08:38:17 +0200 Subject: [PATCH] (Vulkan Windows/WGL) Change ifdef for Griffin --- griffin/griffin_cpp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/griffin/griffin_cpp.cpp b/griffin/griffin_cpp.cpp index dcc2308726..54e88b1233 100644 --- a/griffin/griffin_cpp.cpp +++ b/griffin/griffin_cpp.cpp @@ -94,9 +94,10 @@ UI COMMON CONTEXT #if defined(_WIN32) && !defined(_XBOX) #include "../gfx/common/win32_common.cpp" -#ifdef HAVE_OPENGL +#if defined(HAVE_OPENGL) || defined(HAVE_VULKAN) #include "../gfx/drivers_context/wgl_ctx.cpp" #endif + #endif