|
|
|
@ -121,7 +121,7 @@ bool parseOptions (int argc, char** argv, OMW::Engine& engine, Files::Configurat
|
|
|
|
|
("content", bpo::value<StringsVector>()->default_value(StringsVector(), "")
|
|
|
|
|
->multitoken(), "content file(s): esm/esp, or omwgame/omwaddon")
|
|
|
|
|
|
|
|
|
|
("nosound", bpo::value<bool>()->implicit_value(true)
|
|
|
|
|
("no-sound", bpo::value<bool>()->implicit_value(true)
|
|
|
|
|
->default_value(false), "disable all sounds")
|
|
|
|
|
|
|
|
|
|
("script-verbose", bpo::value<bool>()->implicit_value(true)
|
|
|
|
@ -234,7 +234,7 @@ bool parseOptions (int argc, char** argv, OMW::Engine& engine, Files::Configurat
|
|
|
|
|
engine.setNewGame(variables["new-game"].as<bool>());
|
|
|
|
|
|
|
|
|
|
// other settings
|
|
|
|
|
engine.setSoundUsage(!variables["nosound"].as<bool>());
|
|
|
|
|
engine.setSoundUsage(!variables["no-sound"].as<bool>());
|
|
|
|
|
engine.setScriptsVerbosity(variables["script-verbose"].as<bool>());
|
|
|
|
|
engine.setCompileAll(variables["script-all"].as<bool>());
|
|
|
|
|
engine.setFallbackValues(variables["fallback"].as<FallbackMap>().mMap);
|
|
|
|
|