Skip to content
Snippets Groups Projects
Commit 33ed65e1 authored by Jonathan Ehret's avatar Jonathan Ehret
Browse files

fix not being able to restart a condition and log data, althought this should...

fix not being able to restart a condition and log data, althought this should normally not be done during a study!
parent 80e9c418
No related branches found
No related tags found
No related merge requests found
...@@ -203,12 +203,13 @@ void USFCondition::Begin() ...@@ -203,12 +203,13 @@ void USFCondition::Begin()
{ {
StartTime = FPlatformTime::Seconds(); StartTime = FPlatformTime::Seconds();
for (auto Vars : DependentVariablesValues) for (auto& Vars : DependentVariablesValues)
{ {
Vars.Value = ""; Vars.Value = "";
} }
bStarted = true; bStarted = true;
bConditionFinished = false;
//TODO: anything else to setup? //TODO: anything else to setup?
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment