mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 04:45:32 +00:00
Bugfix #809
This commit is contained in:
parent
b5926257f5
commit
09cc57381a
1 changed files with 1 additions and 3 deletions
|
@ -55,10 +55,8 @@ int main(int argc, char *argv[]) {
|
|||
std::cerr << "ini file does not exist" << std::endl;
|
||||
return -3;
|
||||
}
|
||||
if(!boost::filesystem::exists(cfgFile)) {
|
||||
if(!boost::filesystem::exists(cfgFile))
|
||||
std::cerr << "cfg file does not exist" << std::endl;
|
||||
return -4;
|
||||
}
|
||||
|
||||
MwIniImporter importer;
|
||||
importer.setVerbose(vm.count("verbose"));
|
||||
|
|
Loading…
Reference in a new issue