some typo

This commit is contained in:
Adrien Bourmault 2021-06-23 17:33:46 +02:00
parent 4440075d7f
commit dfc5549043
No known key found for this signature in database
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 2 additions and 2 deletions

View File

@ -103,13 +103,13 @@ int ModelLoad(int id) // TODO unload !
void ModelRun(int id)
{
// Creating structure for the Scheduler
SchedInit(knownModel[id]->scheduler);
SchedInit(loadedModel[id]->scheduler);
}
void ModelStop(int id)
{
// Creating structure for the Scheduler
knownModel[id]->scheduler->pleaseStop = true;
loadedModel[id]->scheduler->pleaseStop = true;
printLog("Model %d stopped!\n", id);
}