From 9da46d0e0acef6659f4ca46c8fb105fd6a473cd6 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Wed, 24 Jul 2019 21:45:37 +0200 Subject: [PATCH] - force this branch to always use the poly backend --- src/win32/hardware.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/win32/hardware.cpp b/src/win32/hardware.cpp index ba95ae680a..faaf08ce4f 100644 --- a/src/win32/hardware.cpp +++ b/src/win32/hardware.cpp @@ -130,10 +130,9 @@ void I_InitGraphics () // are the active app. Huh? } - if (vid_enablevulkan == 2) - { - Video = new Win32PolyVideo(); - } +#if 1 // always use poly backend on this branch, for now. + Video = new Win32PolyVideo(); +#else #ifdef HAVE_VULKAN else if (vid_enablevulkan == 1) { @@ -153,6 +152,7 @@ void I_InitGraphics () { Video = new Win32GLVideo(); } +#endif if (Video == NULL) I_FatalError ("Failed to initialize display");