mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
Pass the missing fullscreen flag when creating a Vukan window.
This commit is contained in:
parent
d9a7465c08
commit
2aea69b48a
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ SDLVideo::SDLVideo ()
|
|||
|
||||
if (Priv::vulkanEnabled)
|
||||
{
|
||||
Priv::CreateWindow(Priv::VulkanWindowFlag | SDL_WINDOW_HIDDEN);
|
||||
Priv::CreateWindow(Priv::VulkanWindowFlag | SDL_WINDOW_HIDDEN | (vid_fullscreen ? SDL_WINDOW_FULLSCREEN_DESKTOP : 0));
|
||||
|
||||
if (Priv::window == nullptr)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue