diff options
Diffstat (limited to 'apps/plugins/pdbox/PDa/intern/dbtopow~.c')
-rw-r--r-- | apps/plugins/pdbox/PDa/intern/dbtopow~.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugins/pdbox/PDa/intern/dbtopow~.c b/apps/plugins/pdbox/PDa/intern/dbtopow~.c index ad4a826f9e..de25b95c5c 100644 --- a/apps/plugins/pdbox/PDa/intern/dbtopow~.c +++ b/apps/plugins/pdbox/PDa/intern/dbtopow~.c | |||
@@ -1,3 +1,8 @@ | |||
1 | #ifdef ROCKBOX | ||
2 | #include "plugin.h" | ||
3 | #include "pdbox.h" | ||
4 | #endif | ||
5 | |||
1 | #include <m_pd.h> | 6 | #include <m_pd.h> |
2 | #include <m_fixed.h> | 7 | #include <m_fixed.h> |
3 | 8 | ||
@@ -39,6 +44,9 @@ static t_int *dbtopow_tilde_perform(t_int *w) | |||
39 | 44 | ||
40 | static void dbtopow_tilde_dsp(t_dbtopow_tilde *x, t_signal **sp) | 45 | static void dbtopow_tilde_dsp(t_dbtopow_tilde *x, t_signal **sp) |
41 | { | 46 | { |
47 | #ifdef ROCKBOX | ||
48 | (void) x; | ||
49 | #endif | ||
42 | post("warning: %s not usable yet",__FUNCTION__); | 50 | post("warning: %s not usable yet",__FUNCTION__); |
43 | dsp_add(dbtopow_tilde_perform, 3, sp[0]->s_vec, sp[1]->s_vec, sp[0]->s_n); | 51 | dsp_add(dbtopow_tilde_perform, 3, sp[0]->s_vec, sp[1]->s_vec, sp[0]->s_n); |
44 | } | 52 | } |