1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 09:23:51 +00:00

return false instead of std::exit

This commit is contained in:
vorenon 2013-06-16 18:13:14 +02:00
parent b97a051dc6
commit ed6098388f

View file

@ -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>();