diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index 8c814736b43..5c8000933f6 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -92,7 +92,6 @@ IF(MSVC) SET(MSVC_INCOMPATIBLE_PLUGINS LadspaEffect monstro - ReverbSC sid #VstEffect Xpressive diff --git a/plugins/ReverbSC/revsc.c b/plugins/ReverbSC/revsc.c index 35084c175e4..503052be388 100644 --- a/plugins/ReverbSC/revsc.c +++ b/plugins/ReverbSC/revsc.c @@ -72,7 +72,7 @@ int sp_revsc_init(sp_data *sp, sp_revsc *p) sp_auxdata_alloc(&p->aux, nBytes); nBytes = 0; for (i = 0; i < 8; i++) { - p->delayLines[i].buf = (p->aux.ptr) + nBytes; + p->delayLines[i].buf = ((char*) p->aux.ptr) + nBytes; init_delay_line(p, &p->delayLines[i], i); nBytes += delay_line_bytes_alloc(sp->sr, 1, i); }