diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-25 09:10:33 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-25 09:10:39 +0200 |
commit | 175e9c53c136ac0effc713e39ef8b65f9914f4ff (patch) | |
tree | 972f1346b43060871baf2e045733e1c2131d7d55 /editor/app.cpp | |
parent | 6de1c31b07604507abf1ab7d1157af5ceca19c62 (diff) |
oops
Diffstat (limited to 'editor/app.cpp')
-rw-r--r-- | editor/app.cpp | 2 |
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)) { |