Skip to content

Commit

Permalink
Update ExportProjectDialog.cpp
Browse files Browse the repository at this point in the history
Fix for MP3 stereo mode doesn't match to the selection in export dialog LMMS#5876

Updated the code to match the LMMS#5876.
  • Loading branch information
deenadayalancs authored Jan 21, 2021
1 parent ca17641 commit 6364f2d
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 6364f2d

Please sign in to comment.