Skip to content

Commit

Permalink
Fixed volume automation
Browse files Browse the repository at this point in the history
  • Loading branch information
KinoMyu committed Jan 7, 2018
1 parent 4285b63 commit 7f08742
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ void parse_control_file(ControlInfo idolInfo[], const std::string & control_file
std::ifstream infilestream(control_file);
std::string line;
int position;
for(int i = 0; i < NUM_IDOLS; ++i)
{
idolInfo[i].second.clear();
}
while (std::getline(infilestream, line))
{
std::istringstream iss(line);
Expand Down

0 comments on commit 7f08742

Please sign in to comment.