Skip to content

Commit adcc009

Browse files
committed
MSVC: Fix vibed plugin
1 parent f245d74 commit adcc009

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

plugins/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ IF(MSVC)
9595
organic
9696
ReverbSC
9797
sid
98-
vibed
9998
#VstEffect
10099
Xpressive
101100
zynaddsubfx

plugins/vibed/vibrating_string.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ vibratingString::vibratingString( float _pitch,
5656

5757
int pick = static_cast<int>( ceil( string_length * _pick ) );
5858

59-
if( not _state )
59+
if( ! _state )
6060
{
6161
m_impulse = new float[string_length];
6262
resample( _impulse, _len, string_length );

plugins/vibed/vibrating_string.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class vibratingString
121121
float r;
122122
float offset;
123123

124-
if( not _state )
124+
if( ! _state )
125125
{
126126
for( int i = 0; i < _pick; i++ )
127127
{

0 commit comments

Comments
 (0)