Skip to content

Commit

Permalink
* Flag test fix from Javier Serrano Polo
Browse files Browse the repository at this point in the history
  • Loading branch information
cannam committed May 4, 2010
1 parent 1fbe863 commit 4289c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dssi-vst-server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow)
cerr << "dssi-vst-server[1]: plugin has a GUI" << endl;
}

if (!plugin->flags & effFlagsCanReplacing) {
if (!(plugin->flags & effFlagsCanReplacing)) {
cerr << "dssi-vst-server: ERROR: Plugin does not support processReplacing (required)"
<< endl;
return 1;
Expand Down

0 comments on commit 4289c0e

Please sign in to comment.