summaryrefslogtreecommitdiff
path: root/synth/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'synth/parser.cpp')
-rw-r--r--synth/parser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/synth/parser.cpp b/synth/parser.cpp
index 174e0ee..1b8befb 100644
--- a/synth/parser.cpp
+++ b/synth/parser.cpp
@@ -1,5 +1,6 @@
#include <cstdlib>
#include <fstream>
+#include <cmath>
#include "parser.h"
#include "defines.h"
@@ -413,7 +414,7 @@ program_t parse(string fn)
}
break;
case FACTOR:
- osc[ind].factor=val*ONE;
+ osc[ind].factor=pow(2.0,val/12.0) *ONE;
break;
case TREMOLO:
osc[ind].tremolo_depth=int(val);