# HG changeset patch # User Giulio Moro # Date 1461868841 -3600 # Node ID cbf70fe3711bf17181291a3f5730244843d131f0 # Parent aec268b5d1b4afb67a4e44372a3895450527df9c Typo diff -r aec268b5d1b4 -r cbf70fe3711b projects/basic_FFT_phase_vocoder/render.cpp --- a/projects/basic_FFT_phase_vocoder/render.cpp Thu Apr 28 19:30:12 2016 +0100 +++ b/projects/basic_FFT_phase_vocoder/render.cpp Thu Apr 28 19:40:41 2016 +0100 @@ -131,12 +131,12 @@ // Initialise auxiliary tasks if((gFFTTask = BeagleRT_createAuxiliaryTask(&process_fft_background, 90, "fft-calculation")) == 0) return false; - rt_printf("You are listening to an FFT phase-vocoder with overlap-and-add " + rt_printf("You are listening to an FFT phase-vocoder with overlap-and-add.\n" "Use Midi Control Change to control:\n" - "CC 2: effect type (bypass/robotization/whisperization)" - "CC 3: mix between recorded sample and live audio input" - "CC 4: mix between the unprocessed and processed sound" - "CC 5: gain" + "CC 2: effect type (bypass/robotization/whisperization)\n" + "CC 3: mix between recorded sample and live audio input\n" + "CC 4: mix between the unprocessed and processed sound\n" + "CC 5: gain\n" ); return true; }