-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
buggood first issuemaster branchThis issue predominantly affects the active development (master) branchThis issue predominantly affects the active development (master) branch
Milestone
Description
#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.
lmms/src/gui/ExportProjectDialog.cpp
Lines 140 to 153 in 24761a4
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
Assignees
Labels
buggood first issuemaster branchThis issue predominantly affects the active development (master) branchThis issue predominantly affects the active development (master) branch