commit 55394d865761579e79a10effaa7348490af4b7eb
parent 47fb5725a0d247bba5951dcad02288f051080f5c
Author: fundamental <mark.d.mccurry@gmail.com>
Date: Tue, 4 May 2010 12:37:12 -0400
APhaser: removing debug prints
Diffstat:
2 files changed, 1 insertion(+), 8 deletions(-)
diff --git a/src/Effects/APhaser.cpp b/src/Effects/APhaser.cpp
@@ -162,7 +162,6 @@ void Analog_Phaser::out(const Stereo<REALTYPE *> &input)
};
- //cout << lxn << " vs ";
//Left channel
for (j = 0; j < Pstages; j++)
{ //Phasing routine
@@ -180,7 +179,6 @@ void Analog_Phaser::out(const Stereo<REALTYPE *> &input)
lxn = lyn1[j];
if (j==1) lxn += fbl; //Insert feedback after first phase stage
};
- //cout << lxn << endl;
//Right channel
for (j = 0; j < Pstages; j++)
@@ -200,8 +198,6 @@ void Analog_Phaser::out(const Stereo<REALTYPE *> &input)
if (j==1) rxn += fbr; //Insert feedback after first phase stage
}
- //cout << fb << ' ' << input.l()[i] - lxn << endl;
- //cout << "input" << input.l()[i] << "output:" << lxn << endl;
fbl = lxn * fb;
fbr = rxn * fb;
@@ -258,7 +254,6 @@ void Analog_Phaser::setfb(unsigned char Pfb)
void Analog_Phaser::setvolume(unsigned char Pvolume)
{
- cout << "setting volume" << (int) Pvolume << endl;
this->Pvolume = Pvolume;
// outvolume is needed in calling program
if(insertion == 0) {
diff --git a/src/UI/EffUI.fl b/src/UI/EffUI.fl
@@ -705,9 +705,8 @@ refresh(eff);}
}
}
Function {make_analog_phaser_window()} {} {
- Fl_Window effaphaserwindow {
+ Fl_Window effaphaserwindow {selected
xywh {292 251 380 95} type Double box PLASTIC_UP_BOX color 221 labelfont 1 hide
- code0 {putchar('a'); putchar('b'); putchar('c');}
class Fl_Group
} {
Fl_Choice aphaserp {
@@ -1560,7 +1559,6 @@ switch(eff->geteffect()){
aphaser10->value(eff->geteffectpar(10));
aphaser11->value(eff->geteffectpar(11));
aphaser12->value(eff->geteffectpar(12));
- putchar('?');
effaphaserwindow->show();
break;
default:effnullwindow->show();