aboutsummaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorDavide Morelli <morellid@users.sourceforge.net>2005-12-22 00:58:39 +0000
committerDavide Morelli <morellid@users.sourceforge.net>2005-12-22 00:58:39 +0000
commit6b999630484e02b53c0bc71d0bcc5da1919728c8 (patch)
tree963d61baff9baa8a56d59b578f85b67f8aec16d3 /common.h
parent975f9ac06a04a0b1528f1fbf9ac7482febc957c2 (diff)
dummy rhythms_memory working, still buggy
svn path=/trunk/externals/frankenstein/; revision=4279
Diffstat (limited to 'common.h')
-rwxr-xr-xcommon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.h b/common.h
index 8b2eb24..c9bfa39 100755
--- a/common.h
+++ b/common.h
@@ -19,8 +19,8 @@ typedef struct t_note
};
typedef struct t_duration
{
- int numerator; // like in music notation: in a 1/4 note the numerator is 1
- int denominator; // like in music notation: in a 1/4 note the denominator is 4
+ unsigned short int numerator; // like in music notation: in a 1/4 note the numerator is 1
+ unsigned short int denominator; // like in music notation: in a 1/4 note the denominator is 4
};
struct t_note_event
{