Skip to content

Commit f53f54e

Browse files
committed
Removed the --nf command line option for WindowTraits to avoid conflicts with --nf nearFarRatio used in some examples
1 parent b1b8465 commit f53f54e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vsg/app/WindowTraits.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ WindowTraits::WindowTraits(CommandLine& arguments)
4444

4545
if (arguments.read({"--fullscreen", "--fs"})) fullscreen = true;
4646
if (arguments.read({"--window", "-w"}, width, height)) { fullscreen = false; }
47-
if (arguments.read({"--no-frame", "--nf"})) decoration = false;
47+
if (arguments.read({"--no-frame"})) decoration = false;
4848
if (arguments.read("--or")) overrideRedirect = true;
4949

5050
if (arguments.read("--d32")) depthFormat = VK_FORMAT_D32_SFLOAT;

0 commit comments

Comments
 (0)