Skip to content

Commit

Permalink
remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdenButterfield committed Aug 26, 2023
1 parent 58b2535 commit c8710fd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Source/GUIelements/PsychoanalGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,9 @@ void PsychoanalGraph::valueTreePropertyChanged(juce::ValueTree &treeWhosePropert
}
} else if (property == juce::Identifier("threshold")) {
juce::Array<juce::var>* t = treeWhosePropertyHasChanged[property].getArray();
std::cout << "new threshold";
for (int i = 0; i < 22; ++i) {
thresholdVals[i] = (float)(*t)[i].operator double();
std::cout << thresholdVals[i] << " ";
}
std::cout << "\n";
}

energy.loadData(energyVals.data());
Expand Down

0 comments on commit c8710fd

Please sign in to comment.