Formatting

This commit is contained in:
Mark Hills 2011-12-11 18:51:10 +00:00
parent 9e5b270178
commit 677e9dd97a
1 changed files with 2 additions and 1 deletions

3
bpm.c
View File

@ -61,7 +61,8 @@ double autodifference(float nrg[], size_t len, double interval)
{
size_t n;
double mid, v, diff;
static const double beats[] = { -32, -16, -8, -4, -2, -1, 1, 2, 4, 8, 16, 32 },
static const double beats[] = { -32, -16, -8, -4, -2, -1,
1, 2, 4, 8, 16, 32 },
nobeats[] = { -0.5, -0.25, 0.25, 0.5 };
mid = drand48() * len;