From 00959de7cafa45e813f54998834d3f31e15d9ffb Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 10 Apr 2014 17:37:13 +0000 Subject: [PATCH] EgtGraphics : - ricompilata con piccoli ritocchi per modifica interfaccia CmdParser. --- SceExecutor.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/SceExecutor.cpp b/SceExecutor.cpp index 17f1cb9..47707e6 100644 --- a/SceExecutor.cpp +++ b/SceExecutor.cpp @@ -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 ; }