summaryrefslogtreecommitdiffhomepage
path: root/editor/app.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/app.cpp')
-rw-r--r--editor/app.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/app.cpp b/editor/app.cpp
index 1906e3f5..f89aa002 100644
--- a/editor/app.cpp
+++ b/editor/app.cpp
@@ -76,7 +76,7 @@ int app::run_from_argv(const int argc, const char* const* const argv)
auto str = args.value<StringView>("gpu-validation");
if (str == "no-error" || str == "NO-ERROR")
opts.gpu_debug = fm_gpu_debug::no_error;
- else if (str == "robust" || str == "robust")
+ else if (str == "robust" || str == "ROBUST")
opts.gpu_debug = fm_gpu_debug::robust;
else switch (parse_tristate("--gpu-validation", args.value<StringView>("gpu-validation"), fm_tristate::maybe))
{