summaryrefslogtreecommitdiff
path: root/maestropond.c
diff options
context:
space:
mode:
Diffstat (limited to 'maestropond.c')
-rw-r--r--maestropond.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/maestropond.c b/maestropond.c
index 0ac0de6..bfe3a44 100644
--- a/maestropond.c
+++ b/maestropond.c
@@ -21,6 +21,12 @@
#include <sys/types.h>
#include <sys/stat.h>
+
+static const int bpm[] = {
+ 40, 50, 60, 65, 70, 80, 90, 100, 115,
+ 130, 145, 160, 175, 190, 210
+};
+
static void show_syntax(const char *s)
{
printf("Syntax: %s [options]\n", s);
@@ -155,7 +161,7 @@ static size_t process_tempo_data(unsigned char *f, size_t ptr)
int tempo;
tempo = f[ptr++];
- printf("Tempo = %i\n", tempo);
+ printf("Tempo = %i bpm\n", bpm[tempo]);
return ptr;
}