Skip to content

Commit

Permalink
commented out old debug stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
hsetlik committed Apr 24, 2021
1 parent e74ba3d commit 08c646f
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 11 deletions.
2 changes: 0 additions & 2 deletions Source/AlgorithmGraphComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,6 @@ int AlgorithmGraph::calculateRows()
{
VectorUtil::addIfUnique(*newRow, dest);
}
if(dest == op)
printf("Self-modulator\n");
}
}
currentLevel = newRow;
Expand Down
5 changes: 0 additions & 5 deletions Source/CustomLnF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@ void LnF1::drawLinearSlider(juce::Graphics &g, int x, int y, int width, int heig
auto thumbHeight = (fBounds.getHeight() - slider.getTextBoxHeight()) * 0.1f;
auto thumbY = (1.0f - fPos) * ((fBounds.getHeight() - slider.getTextBoxHeight()) - thumbHeight - 5);
thumbY += 5;

/*
printf("Slider Position: %f\n", sliderPos);
printf("Thumb is at: %f\n", thumbY);
*/
//draw the background
g.setColour(UXPalette::darkGray1);
g.fillRoundedRectangle(x + xOffsetBkgnd,
Expand Down
2 changes: 1 addition & 1 deletion Source/FmVoice.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class FmVoice : public juce::SynthesiserVoice
FmVoice(int numOperators, int index, juce::AudioProcessorValueTreeState* t);
~FmVoice()
{
printf("Voice #: %d -- %d total jumps\n", voiceIndex, numJumps);
//printf("Voice #: %d -- %d total jumps\n", voiceIndex, numJumps);
}
bool canPlaySound(juce::SynthesiserSound* sound) override
{
Expand Down
4 changes: 2 additions & 2 deletions Source/PatchManagerComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ saveDialogComponent(patchDlg)
auto patchFolder = appFolder.getChildFile("HexFM_Patches");
if(patchFolder.exists() && patchFolder.isDirectory())
{
printf("patch folder exists\n");
//printf("patch folder exists\n");
patchFolder.setAsCurrentWorkingDirectory();
}
else
{
patchFolder.createDirectory();
patchFolder.setAsCurrentWorkingDirectory();
printf("patch folder created\n");
//printf("patch folder created\n");
}
presetFolder = patchFolder;

Expand Down
1 change: 0 additions & 1 deletion Source/PatchTypeData.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ struct PatchLibrary
{
patchFolder.createDirectory();
patchFolder.setAsCurrentWorkingDirectory();
printf("patch folder created\n");
}
presetFolder = patchFolder;
bassGroup.loadFilesForType(presetFolder);
Expand Down

0 comments on commit 08c646f

Please sign in to comment.