mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 14:23:53 +00:00
return false instead of std::exit
This commit is contained in:
parent
b97a051dc6
commit
ed6098388f
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ bool parseOptions (int argc, char** argv, OMW::Engine& engine, Files::Configurat
|
|||
if (master.empty())
|
||||
{
|
||||
std::cout << "No master file given. Aborting...\n";
|
||||
std::exit(1);
|
||||
return false;
|
||||
}
|
||||
|
||||
StringsVector plugin = variables["plugin"].as<StringsVector>();
|
||||
|
|
Loading…
Reference in a new issue