A few trivial things, including removing '/' as a command line option indicator so absolute paths work naturally.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@20839 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich
2013-03-12 17:52:59 +00:00
parent 20169715df
commit d7c120f16f
3 changed files with 3 additions and 1 deletions

View File

@@ -132,7 +132,7 @@ int C_DECL main(int argc, char* argv[])
argc--;
argv++;
for (; argc >= 1; argc--, argv++) {
if (argv[0][0] == '-' || argv[0][0] == '/') {
if (argv[0][0] == '-') {
switch (argv[0][1]) {
case 'd': delay = true; break;