- force this branch to always use the poly backend

This commit is contained in:
Magnus Norddahl 2019-07-24 21:45:37 +02:00
parent e6f6f10e81
commit 9da46d0e0a

View file

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