summaryrefslogtreecommitdiff
path: root/plugins/soundtouch
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-05-21 22:13:38 +0200
committerGravatar waker <wakeroid@gmail.com>2011-05-21 22:13:38 +0200
commitae4462a1675651d38d0de3d714846779a2bd2c90 (patch)
treee9e73f52689b9020ce1274cabad9f5b89f8fa405 /plugins/soundtouch
parentf785d4a31d0ab246e68addb08815a571b3c9546c (diff)
hardcoded api_version 1.0 into all plugins
Diffstat (limited to 'plugins/soundtouch')
-rw-r--r--plugins/soundtouch/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/soundtouch/plugin.c b/plugins/soundtouch/plugin.c
index 42b633ac..770f1c0a 100644
--- a/plugins/soundtouch/plugin.c
+++ b/plugins/soundtouch/plugin.c
@@ -262,8 +262,8 @@ static const char settings_dlg[] =
;
static DB_dsp_t plugin = {
- .plugin.api_vmajor = DB_API_VERSION_MAJOR,
- .plugin.api_vminor = DB_API_VERSION_MINOR,
+ .plugin.api_vmajor = 1,
+ .plugin.api_vminor = 0,
.open = st_open,
.close = st_close,
.process = st_process,