Skip to content

Commit 519b56c

Browse files
authored
Fix wrong example in the help
The p is necessary for position, the v is not a valid option. And since v will be discarded, and position is not specified, the application will just exit.
1 parent 5e98d45 commit 519b56c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Samples/Desktop/D3D12MeshShaders/src/WavefrontConverter

Samples/Desktop/D3D12MeshShaders/src/WavefrontConverter/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ namespace
4949
std::cout << std::endl;
5050

5151
std::cout << "Example:" << std::endl;
52-
std::cout << "\tConverterApp.exe -a v:nutb -v 128 -p 128 -i Path/To/MyFile1.obj Path/To/MyFile2.obj " << std::endl;
52+
std::cout << "\tConverterApp.exe -a p:nutb -v 128 -p 128 -i Path/To/MyFile1.obj Path/To/MyFile2.obj " << std::endl;
5353
std::cout << std::endl;
5454
}
5555

0 commit comments

Comments
 (0)