This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
paulstretchplugin
mirror of
https://bitbucket.org/xenakios/paulstretchplugin.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
10
Wiki
Activity
Browse Source
MacOS build
tags/1.1.0
xenakios
7 years ago
parent
dbcf935ac8
commit
51d40c6daf
2 changed files
with
6 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
Source/PluginEditor.cpp
+1
-0
Source/PluginProcessor.cpp
+ 5
- 1
Source/PluginEditor.cpp
View File
@@ -422,7 +422,11 @@ void PaulstretchpluginAudioProcessorEditor::showSettingsMenu()
}
if (r == 8)
{
processor.offlineRender(File("C:\\MusicAudio\\sourcesamples\\paultesmaus\\plugin_offline_test\\out.wav"));
#ifdef JUCE_WINDOWS
processor.offlineRender(File("C:\\MusicAudio\\sourcesamples\\paultesmaus\\plugin_offline_test\\out.wav"));
#else
processor.offlineRender(File("/Users/teemu/AudioProjects/sourcesamples/paultests/pspout.wav"));
#endif
}
if (r == 9)
{
+ 1
- 0
Source/PluginProcessor.cpp
View File
@@ -21,6 +21,7 @@ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "PluginProcessor.h"
#include "PluginEditor.h"
#include <set>
#include <thread>
#ifdef WIN32
#undef min
Write
Preview
Loading…
Cancel
Save