Skip to content

Commit

Permalink
Remove conflicting -m flag from model config make hard drive director…
Browse files Browse the repository at this point in the history
…ies work again (#1585)
  • Loading branch information
sonnenscheinchen authored Jan 11, 2025
1 parent 9f6a0f8 commit 560dd9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ static void parse_cmdline (int argc, TCHAR **argv)
}
loaded = true;
}
else if (_tcscmp(argv[i], _T("--model")) == 0 || _tcscmp(argv[i], _T("-m")) == 0) {
else if (_tcscmp(argv[i], _T("--model")) == 0) {
if (i + 1 == argc)
write_log(_T("Missing argument for '--model' option.\n"));
else
Expand Down

0 comments on commit 560dd9f

Please sign in to comment.