Skip to content

Commit c21e4cc

Browse files
committed
change cmdline argument naming to match the naming scheme
1 parent 6537b72 commit c21e4cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

12_MeshLoaders/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class MeshLoadersApp final : public MonoWindowApplication, public BuiltinResourc
3535

3636
// parse args
3737
argparse::ArgumentParser parser("12_meshloaders");
38-
parser.add_argument("--savemesh")
38+
parser.add_argument("--savegeometry")
3939
.help("Save the mesh on exit or reload")
4040
.flag();
4141

@@ -52,7 +52,7 @@ class MeshLoadersApp final : public MonoWindowApplication, public BuiltinResourc
5252
return logFail(e.what());
5353
}
5454

55-
if (parser["--savemesh"] == true)
55+
if (parser["--savegeometry"] == true)
5656
m_saveGeom = true;
5757

5858
if (parser.present("--savepath"))

0 commit comments

Comments
 (0)