changeset 322:4fdf70be6671 tonioni

changed max frequency for note playback from 2000 to 5000 such that all piano notes can be played
author matthiasm
date Thu, 16 Jan 2014 17:27:42 +0000
parents 1bc4b56885bd
children ce2b123fc2de
files audioio/ClipMixer.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/audioio/ClipMixer.cpp	Thu Jan 16 16:32:42 2014 +0000
+++ b/audioio/ClipMixer.cpp	Thu Jan 16 17:27:42 2014 +0000
@@ -123,7 +123,7 @@
 {
     foreach (NoteStart note, newNotes) {
         if (note.frequency > 20 && 
-            note.frequency < 2000) {
+            note.frequency < 5000) {
             m_playing.push_back(note);
         }
     }