Commit 0f4c9587e249057c8f532a80acf3c621925cb058

Authored by Carlos Picanco
1 parent 5c2ded6e
Exists in master

experiment runner - loading routine incremental changes

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
form_matrixgame.pas
... ... @@ -328,7 +328,7 @@ begin
328 328 ButtonExpStart.Enabled := True;
329 329 ButtonExpStart.Caption := CAPTION_RESUME;
330 330 ButtonExpPause.Enabled := not ButtonExpStart.Enabled;
331   - //FGameControl.Experiment.Pause;
  331 + //FGameControl.Pause;
332 332 end;
333 333  
334 334 procedure TFormMatrixGame.ButtonExpStartClick(Sender: TObject);
... ... @@ -350,7 +350,7 @@ begin
350 350 ButtonExpStart.Caption := CAPTION_RUNNING;
351 351 ButtonExpCancel.Enabled := not ButtonExpStart.Enabled;
352 352 ButtonExpPause.Enabled := not ButtonExpStart.Enabled;
353   - //FGameControl.Experiment.Resume;
  353 + //FGameControl.Resume;
354 354 end;
355 355 end;
356 356  
... ...