From ef15a265a7a50868dc7183056b3d7e80cd856f8e Mon Sep 17 00:00:00 2001 From: saschawillems Date: Sat, 27 Jan 2018 14:37:23 +0100 Subject: [PATCH] Short-hand version of fullscreen parameter --- base/vulkanexamplebase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/vulkanexamplebase.cpp b/base/vulkanexamplebase.cpp index 3460456a..670e76f0 100644 --- a/base/vulkanexamplebase.cpp +++ b/base/vulkanexamplebase.cpp @@ -681,7 +681,7 @@ VulkanExampleBase::VulkanExampleBase(bool enableValidation) if (args[i] == std::string("-vsync")) { settings.vsync = true; } - if (args[i] == std::string("-fullscreen")) { + if ((args[i] == std::string("-f")) || (args[i] == std::string("--fullscreen"))) { settings.fullscreen = true; } if ((args[i] == std::string("-w")) || (args[i] == std::string("-width"))) {