changeset 351:6bcafbfac674 build-default-156

Now fix logic error in makeHornInF.sh. And we get some playable tunes. We might be able to improve the transposition further by taking the Cello approach of calculating the minimum distance outside the comfortable range. One for the future.
author Jim Hague <jim.hague@acm.org>
date Tue, 13 Aug 2013 01:48:21 +0100
parents afca0a74893b
children c79382d6026b
files makeHornInF.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/makeHornInF.sh	Tue Aug 13 01:06:24 2013 +0100
+++ b/makeHornInF.sh	Tue Aug 13 01:48:21 2013 +0100
@@ -10,7 +10,7 @@
 # Transpose down (return 0) if top note was > e (> a for horn).
 transposedown()
 {
-    (($2 <= 109))
+    (($2 > 109))
 }
 
 dir=`pwd`