[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
NoteNames
From: |
Han-Wen Nienhuys |
Subject: |
NoteNames |
Date: |
Wed, 5 Dec 2001 00:48:50 +0100 |
address@hidden writes:
> notes in central octave gets wrong names (missing ' )
try this patch:
--- pitch.cc~ Sun Oct 14 15:15:44 2001
+++ pitch.cc Wed Dec 5 00:47:56 2001
@@ -154,13 +154,13 @@
if (alteration_i_)
s += String (accname[alteration_i_ + 2]);
- if (octave_i_ > 0)
+ if (octave_i_ >= 0)
{
int o = octave_i_ + 1;
while (o--)
s += "'";
}
- else if (octave_i_ <0)
+ else if (octave_i_ < 0)
{
int o = (-octave_i_) - 1;
while (o--)
--
Han-Wen Nienhuys | address@hidden | http://www.cs.uu.nl/~hanwen/
- NoteNames, Rune Zedeler, 2001/12/04
- NoteNames,
Han-Wen Nienhuys <=