Skip to content

Commit

Permalink
Added TS9 and BluesJr conditioned models
Browse files Browse the repository at this point in the history
  • Loading branch information
GuitarML committed Oct 21, 2021
1 parent cc003e3 commit c6eaf57
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions NeuralPi.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 7,14 @@
displaySplashScreen="1" companyEmail="[email protected]">
<MAINGROUP id="zI9r2C" name="NeuralPi">
<GROUP id="{810D2D07-FCAC-0F25-F63F-DCF49FEE10C7}" name="Resources">
<FILE id="wKou0l" name="BluesJr.json" compile="0" resource="1" file="models/BluesJr.json"/>
<FILE id="hQ0vq1" name="BluesJR_FullD.json" compile="0" resource="1"
file="models/BluesJR_FullD.json"/>
<FILE id="YURBrY" name="HT40_Overdrive.json" compile="0" resource="1"
file="models/HT40_Overdrive.json"/>
<FILE id="JubKNX" name="npi_background.jpg" compile="0" resource="1"
file="resources/npi_background.jpg"/>
<FILE id="ZNutt3" name="TS9.json" compile="0" resource="1" file="models/TS9.json"/>
<FILE id="wH6oji" name="TS9_FullD.json" compile="0" resource="1" file="models/TS9_FullD.json"/>
</GROUP>
<GROUP id="{70CE292C-E9C5-C029-B95A-F7DF41E5F74C}" name="Source">
Expand Down
8 changes: 4 additions & 4 deletions Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -474,8 474,8 @@ void NeuralPiAudioProcessor::installTones()
//====================================================================
{
// Default tones
File ts9_tone = userAppDataDirectory_tones.getFullPathName() "/TS9_FullD.json";
File bjdirty_tone = userAppDataDirectory_tones.getFullPathName() "/BluesJR_FullD.json";
File ts9_tone = userAppDataDirectory_tones.getFullPathName() "/TS9.json";
File bjdirty_tone = userAppDataDirectory_tones.getFullPathName() "/BluesJR.json";
File ht40od_tone = userAppDataDirectory_tones.getFullPathName() "/HT40_Overdrive.json";

if (ts9_tone.existsAsFile() == false) {
Expand All @@ -484,7 484,7 @@ void NeuralPiAudioProcessor::installTones()

std::ofstream myfile;
myfile.open(char_ts9_tone);
myfile << BinaryData::TS9_FullD_json;
myfile << BinaryData::TS9_json;

myfile.close();
}
Expand All @@ -495,7 495,7 @@ void NeuralPiAudioProcessor::installTones()

std::ofstream myfile;
myfile.open(char_bjdirty);
myfile << BinaryData::BluesJR_FullD_json;
myfile << BinaryData::BluesJr_json;

myfile.close();
}
Expand Down
1 change: 1 addition & 0 deletions models/BluesJr.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion models/HT40_Overdrive.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions models/TS9.json

Large diffs are not rendered by default.

0 comments on commit c6eaf57

Please sign in to comment.