From d1ceaf286dcdd8b1ab51838d66a9df2b8ca4dce1 Mon Sep 17 00:00:00 2001 From: Davide Morelli Date: Sun, 15 Jan 2006 22:54:41 +0000 Subject: adding voicing_analyzer and fixing typos svn path=/trunk/externals/frankenstein/; revision=4408 --- harmonizer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'harmonizer.c') 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; -- cgit v1.2.1