MSVC: Fix ReverbSC

This commit is contained in:
Lukas W
2018-07-28 14:09:00 +02:00
parent ac65fb9924
commit 57c85f49b7
2 changed files with 1 additions and 2 deletions

View File

@@ -92,7 +92,6 @@ IF(MSVC)
SET(MSVC_INCOMPATIBLE_PLUGINS
LadspaEffect
monstro
ReverbSC
sid
#VstEffect
Xpressive

View File

@@ -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);
}