Skip to content

Commit 02f1a19

Browse files
committed
Fix BRIR label display for bundled files
1 parent d5a6a1e commit 02f1a19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Binaural/v1/ReverbControls.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ void ReverbControls::updateBypass() {
124124

125125
void ReverbControls::updateBrirLabel() {
126126
auto brirIndex = mReverb.getBrirIndex();
127-
if (brirIndex >= 0 && brirIndex < BundledBRIRs.size()-2) {
127+
if (brirIndex >= 0 && brirIndex < BundledBRIRs.size()) {
128128
brirMenu.setSelectedItemIndex(brirIndex, dontSendNotification);
129129
} else {
130130
// Show filename if custom file is selected

0 commit comments

Comments
 (0)