EgtMachKernel 1.8d7 :

- aggiunto parametro a SimStart per distinguere puro inizio da avvio simulazione.
This commit is contained in:
Dario Sassi
2017-04-21 09:44:18 +00:00
parent 4b4a6bb88b
commit d640e85550
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ using namespace std ;
//----------------------------------------------------------------------------
bool
MachMgr::SimStart( void)
MachMgr::SimStart( bool bFirst)
{
// alloco simulatore
if ( m_pSimul != nullptr)
@@ -34,7 +34,7 @@ MachMgr::SimStart( void)
if ( ! m_pSimul->Init( this))
return false ;
// lo avvio
return m_pSimul->Start() ;
return m_pSimul->Start( bFirst) ;
}
//----------------------------------------------------------------------------