Skip to content

Commit

Permalink
Fix SubChannel temp file naming
Browse files Browse the repository at this point in the history
  • Loading branch information
qwertymodo committed Mar 16, 2017
1 parent 1313c9e commit 15d7dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msupcm++/AudioSubTrack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ void AudioSubTrack::render()
for (auto i = 0; i < m_num_sub_channels; ++i)
{
AudioSubChannel* p = &dynamic_cast<AudioSubChannel*>(m_sub_channels)[i];
p->outFile() = m_outfile.substr(0, m_outfile.find_last_of(".")).append("_str").append(std::to_string(i)).append(".wav");
p->outFile() = m_outfile.substr(0, m_outfile.find_last_of(".")).append("_sch").append(std::to_string(i)).append(".wav");
p->render();
if (!m_loop)
{
Expand Down

0 comments on commit 15d7dcd

Please sign in to comment.