# HG changeset patch # User matthiasm # Date 1389893262 0 # Node ID 4fdf70be6671b41133765d69ce112a1fe78a9f23 # Parent 1bc4b56885bd494170a9369be7b0b434927d67be changed max frequency for note playback from 2000 to 5000 such that all piano notes can be played diff -r 1bc4b56885bd -r 4fdf70be6671 audioio/ClipMixer.cpp --- 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); } }