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.
This commit is contained in:
Jim Hague 2013-08-13 01:48:21 +01:00
parent 2509e70c1c
commit 4362163e75
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ fi
# Transpose down (return 0) if top note was > e (> a for horn). # Transpose down (return 0) if top note was > e (> a for horn).
transposedown() transposedown()
{ {
(($2 <= 109)) (($2 > 109))
} }
dir=`pwd` dir=`pwd`