Skip to content

Commit

Permalink
revise
Browse files Browse the repository at this point in the history
  • Loading branch information
shun60s committed Jan 27, 2020
1 parent 8beb463 commit 441cc8b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Circuits/wdfSadouPushPushTriodeAmpTree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class wdfSadouPushPullTriodeAmpTree: public wdfTree {
outputGain.name = "Output Gain";
outputGain.ID = 1;
outputGain.type = doubleParam;
outputGain.value = 1.0;
outputGain.value = 0.732;
outputGain.units = " ";
outputGain.lowLim = 0;
outputGain.highLim = 4;
Expand Down
4 changes: 2 additions & 2 deletions Libs/rt-wdf_lib/rt-wdf_nlSolvers.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
iteration ITMAX, October-2019, Shun
add NewtonSolver coefficient ALPHA adjustment, October-2019, Shun
re-adjust NewtonSolver coefficient ALPHA , January-2020, Shun
==============================================================================
*/
Expand Down Expand Up @@ -70,7 +70,7 @@

/** NewtonSolver coefficient, alpha */
#ifdef DEF_6K6
#define ALPHA2 0.6 // 0.9NG 0.75NG 0.7NG 0.6OK 0.5OK
#define ALPHA2 0.5 // 0.9NG 0.75NG 0.7NG 0.6OK->NG 0.5OK
#endif

//==============================================================================
Expand Down
2 changes: 1 addition & 1 deletion wdfRenderer/Builds/VisualStudio2017/resources.rc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ BEGIN
VALUE "FileDescription", "wdfRenderer\0"
VALUE "FileVersion", "1.0.0\0"
VALUE "ProductName", "wdfRenderer\0"
VALUE "ProductVersion", "1.0.0\0"
VALUE "ProductVersion", "1.0.1\0"
END
END

Expand Down
15 changes: 9 additions & 6 deletions wdfRenderer/Source/MainComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
add wdfSadouPushPushVCVSConnectionTriodeAmpTree2, October-2019, Shun
delete Resampler fucntion, November-2019, Shun
stereo input available, November-2019, Shun
layout size change, November-2019, Shun
layout size to 600, 460, November-2019, Shun
add a message January-2020, Shun
===============================================================================
*/

Expand Down Expand Up @@ -150,10 +150,13 @@ class MainContentComponent : public Component,
wdfTree->initTree();
}


// message
writeLogLine("This is a change of rt-wdf_renderer.");
writeLogLine("how to use: select a circuit(Tone Stack,CCTAx1,etc), Open File, and then Render");


UpdateWdfTree(START_ID-1);


/*
writeLogLine("Created WDF tree");
groupParams.setText(myWdfTree->getTreeIdentifier());
Expand All @@ -169,7 +172,7 @@ class MainContentComponent : public Component,

// writeLogLine("Ready.");

writeLogLine("Order: 1st select wdr, next open file, and last render");


}

Expand Down Expand Up @@ -397,7 +400,7 @@ class MainContentComponent : public Component,
upBuf = new float[downBufSize]; //BS TODO
upBuf2 = new float[downBufSize]; //BS TODO

readerSource = newSource.release();
readerSource = newSource.release(); // leaves a dangling pointer
}
}
}
Expand Down

0 comments on commit 441cc8b

Please sign in to comment.