diff projects/d-box/FeedbackOscillator.h @ 108:3068421c0737 ultra-staging

Merged default into ultra-staging
author Giulio Moro <giuliomoro@yahoo.it>
date Tue, 18 Aug 2015 00:35:15 +0100
parents be427da6fb9c
children
line wrap: on
line diff
--- a/projects/d-box/FeedbackOscillator.h	Mon Jun 08 01:07:48 2015 +0100
+++ b/projects/d-box/FeedbackOscillator.h	Tue Aug 18 00:35:15 2015 +0100
@@ -8,8 +8,6 @@
 #ifndef FEEDBACKOSCILLATOR_H
 #define FEEDBACKOSCILLATOR_H
 
-#include <stdint.h>
-
 class FeedbackOscillator
 {
 public:
@@ -21,7 +19,7 @@
 
 	// Process one sample and store the output value
 	// Returns the length of table to interpolate; or 0 if nothing to process further
-	int process(uint16_t input, uint16_t *output);
+	int process(float input, float *output);
 
 	float *wavetable() { return wavetableRead; }