Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Sep 23, 2024
1 parent ba3f4fa commit 376072d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mirivoice/Mirivoice.Core/Managers/AudioManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public async void PlayAllCacheFiles(int startIndex, bool exportOnlyAndDoNotPlay=
else
{
// export mixdown
string exportPath = Path.Combine(DirPath, $"{fileName}"); // no suffix, because file extension is already included
string exportPath = Path.Combine(DirPath, $"{fileName}.wav");
exportPath = SetSuffixToUnique(exportPath, 1);
using (var outputWaveFile = new WaveFileWriter(exportPath, new WaveFormat(48000, 1)))
{
Expand Down

0 comments on commit 376072d

Please sign in to comment.