mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2025-01-19 06:05:33 +00:00
'Fixed' the Mission Compiler crash.
--HG-- branch : gsoc2014-dfighter
This commit is contained in:
parent
56a4c3ea7d
commit
1cbcca259c
1 changed files with 8 additions and 1 deletions
|
@ -90,7 +90,14 @@ MissionCompilerMainWindow::MissionCompilerMainWindow(QWidget *parent) :
|
||||||
|
|
||||||
NLLIGO::Register();
|
NLLIGO::Register();
|
||||||
// TODO try/catch exception. Crashes if path invalid.
|
// TODO try/catch exception. Crashes if path invalid.
|
||||||
m_ligoConfig.readPrimitiveClass(NLMISC::CPath::lookup("world_editor_classes.xml").c_str(), false);
|
try{
|
||||||
|
m_ligoConfig.readPrimitiveClass(NLMISC::CPath::lookup("world_editor_classes.xml").c_str(), false);
|
||||||
|
}
|
||||||
|
catch( NLMISC::Exception &e )
|
||||||
|
{
|
||||||
|
nlinfo( "Exception occured during Mission Compiler LIGO startup: %s", e.what() );
|
||||||
|
}
|
||||||
|
|
||||||
NLLIGO::CPrimitiveContext::instance().CurrentLigoConfig = &m_ligoConfig;
|
NLLIGO::CPrimitiveContext::instance().CurrentLigoConfig = &m_ligoConfig;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue