summaryrefslogtreecommitdiff
path: root/tools/slang-test/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/slang-test/options.cpp')
-rw-r--r--tools/slang-test/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/slang-test/options.cpp b/tools/slang-test/options.cpp
index 875f9ef0b..eee099965 100644
--- a/tools/slang-test/options.cpp
+++ b/tools/slang-test/options.cpp
@@ -266,7 +266,7 @@ static bool _isSubCommand(const char* arg)
return res;
}
}
- else if (strcmp(arg, "-nv-api-path") == 0)
+ else if (strcmp(arg, "-nvapi-path") == 0)
{
if (argCursor == argEnd)
{
@@ -274,7 +274,7 @@ static bool _isSubCommand(const char* arg)
return SLANG_FAIL;
}
- optionsOut->nvAPIPath = *argCursor++;
+ optionsOut->nvapiPath = *argCursor++;
}
else
{