Skip to content

Commit

Permalink
MSVC: Fix ReverbSC
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-w committed Jul 28, 2018
1 parent ac65fb9 commit 57c85f4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion plugins/CMakeLists.txt
Expand Up @@ -92,7 +92,6 @@ IF(MSVC)
SET(MSVC_INCOMPATIBLE_PLUGINS
LadspaEffect
monstro
ReverbSC
sid
#VstEffect
Xpressive
Expand Down
2 changes: 1 addition & 1 deletion plugins/ReverbSC/revsc.c
Expand Up @@ -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);
}
Expand Down

0 comments on commit 57c85f4

Please sign in to comment.