aboutsummaryrefslogtreecommitdiff
path: root/harmonizer.c
diff options
context:
space:
mode:
authorDavide Morelli <morellid@users.sourceforge.net>2006-01-15 22:54:41 +0000
committerDavide Morelli <morellid@users.sourceforge.net>2006-01-15 22:54:41 +0000
commitd1ceaf286dcdd8b1ab51838d66a9df2b8ca4dce1 (patch)
tree5865c38a199011cd0b50224e0806eca1747fabcd /harmonizer.c
parenta2c32daace69e8651804d073a9f505adcd4ff16c (diff)
adding voicing_analyzer and fixing typos
svn path=/trunk/externals/frankenstein/; revision=4408
Diffstat (limited to 'harmonizer.c')
-rwxr-xr-xharmonizer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/harmonizer.c b/harmonizer.c
index 18024f1..9a99559 100755
--- a/harmonizer.c
+++ b/harmonizer.c
@@ -62,11 +62,11 @@ static t_class *harmonizer_class;
// this defines a chord in a tonality
-typedef struct _chord
+typedef struct _chord_abs
{
chord_type_t mode;
abs_note_t note;
-} chord_t;
+} chord_abs_t;
typedef struct _harmonizer
@@ -75,8 +75,8 @@ typedef struct _harmonizer
// genotypes
int population[MAX_POPULATION][VOICES];
int current_voices[VOICES];
- chord_t current_chord;
- chord_t target_chord;
+ chord_abs_t current_chord;
+ chord_abs_t target_chord;
int target_notes[POSSIBLE_NOTES];
t_outlet *l_out;