EgtGraphics :

- ricompilata con piccoli ritocchi per modifica interfaccia CmdParser.
This commit is contained in:
Dario Sassi
2014-04-10 17:37:13 +00:00
parent 7b1b6e8ad8
commit 00959de7ca
+3 -4
View File
@@ -71,13 +71,12 @@ SceExecutor::Execute( const string& sCmd1, const string& sCmd2, const STRVECTOR&
{
// verifico validità Scene
if ( m_pScene == nullptr) {
LOG_ERROR( GetEGrLogger(), "Error : null Scene.")
return false ;
LOG_ERROR( GetEGrLogger(), "Error : null Scene in SceExecutor.")
return ER_ERR ;
}
// verifico validità CmdParser
if ( m_pParser == nullptr) {
LOG_ERROR( GetEGrLogger(), "Error : null CmdParser.")
LOG_ERROR( GetEGrLogger(), "Error : null CmdParser in SceExecutor.")
return ER_ERR ;
}