Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed bug with option /be not selectable
  • Loading branch information
2448coder committed Jun 12, 2016
1 parent be8eabb commit 759fb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DiscImageCreator/DiscImageCreator.cpp
Expand Up @@ -1010,7 +1010,7 @@ int checkArg(int argc, _TCHAR* argv[], PEXEC_TYPE pExecType, PEXT_ARG pExtArg, _
}
}
else if (!_tcsncmp(argv[i - 1], _T("/be"), 3)) {
if (SetOptionBe(argc, argv, pExtArg, &i)) {
if (!SetOptionBe(argc, argv, pExtArg, &i)) {
return FALSE;
}
}
Expand Down

0 comments on commit 759fb6f

Please sign in to comment.