Skip to content

Commit

Permalink
Fix MP3 stereo mode doesn't match to the selection in export dialog (L…
Browse files Browse the repository at this point in the history
  • Loading branch information
deenadayalancs authored and IanCaio committed Mar 28, 2021
1 parent 786da0f commit 3272a01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/ExportProjectDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ OutputSettings::StereoMode mapToStereoMode(int index)
switch (index)
{
case 0:
return OutputSettings::StereoMode_Stereo;
return OutputSettings::StereoMode_Mono;
case 1:
return OutputSettings::StereoMode_JointStereo;
return OutputSettings::StereoMode_Stereo;
case 2:
return OutputSettings::StereoMode_Mono;
return OutputSettings::StereoMode_JointStereo;
default:
return OutputSettings::StereoMode_Stereo;
}
Expand Down

0 comments on commit 3272a01

Please sign in to comment.