Commit b973146c authored by Erwan Tulou's avatar Erwan Tulou

skins2: fix uninitialized variable

parent a3a09ff0
...@@ -60,7 +60,7 @@ EqualizerBands::~EqualizerBands() ...@@ -60,7 +60,7 @@ EqualizerBands::~EqualizerBands()
void EqualizerBands::set( std::string bands ) void EqualizerBands::set( std::string bands )
{ {
float val; float val = 0.0f;
std::stringstream ss( bands ); std::stringstream ss( bands );
m_isUpdating = true; m_isUpdating = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment