Skip to content

MP3 stereo mode doesn't match to the selection in export dialog #5876

@PhysSong

Description

@PhysSong

#3826 reordered the stereo mode selections in the export dialog, but it didn't update mapToStereoMode function in ExportProjectDialog.cpp. The order should now be changed to mono, stereo, joint stereo.

OutputSettings::StereoMode mapToStereoMode(int index)
{
switch (index)
{
case 0:
return OutputSettings::StereoMode_Stereo;
case 1:
return OutputSettings::StereoMode_JointStereo;
case 2:
return OutputSettings::StereoMode_Mono;
default:
return OutputSettings::StereoMode_Stereo;
}
}

Metadata

Metadata

Labels

buggood first issuemaster branchThis issue predominantly affects the active development (master) branch

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions