EgtExecutor 1.8d2 :

- adattamenti per nuovo parametro di SimStart.
This commit is contained in:
Dario Sassi
2017-04-21 09:44:54 +00:00
parent bbf5db64e2
commit 7bf984db01
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -2216,12 +2216,12 @@ ExeIsMachiningEmpty( void)
// Simulazione
//-----------------------------------------------------------------------------
bool
ExeSimStart( void)
ExeSimStart( bool bFirst)
{
IMachMgr* pMachMgr = GetCurrMachMgr() ;
VERIFY_MACHMGR( pMachMgr, false)
// avvio la simulazione della macchinata corrente
return pMachMgr->SimStart() ;
return pMachMgr->SimStart( bFirst) ;
}
//-----------------------------------------------------------------------------