mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 16:10:06 +02:00
fixed an "used uninitialized" warning in VampEffect.cpp
This commit is contained in:
parent
6a85577389
commit
84016716f0
@ -274,7 +274,7 @@ bool VampEffect::SetAutomationParameters(CommandParameters & parms)
|
||||
!mParameters[p].valueNames.empty())
|
||||
{
|
||||
wxArrayString choices;
|
||||
int val;
|
||||
int val = 0;
|
||||
|
||||
for (size_t i = 0, cnt = mParameters[p].valueNames.size(); i < cnt; i++)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user