We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc0ed69 commit 2d74335Copy full SHA for 2d74335
1 file changed
scripts/configure.pl
@@ -74,7 +74,11 @@
74
if (!grep(/$fx/, @forceIsMonoForPlugins)) {
75
my $fn = $fx;
76
$fn =~ s/Point$/Poynt/; # Fix for "weird" naming in MacAU/Point plugin
77
- open (AU, "< libs/airwindows/plugins/MacAU/$fx/$fn.h") || die "Can't open what: $!";
+ unless (open (AU, "< libs/airwindows/plugins/MacAU/$fx/$fn.h")) {
78
+ warn "Can't open $fx/$fn.h: $!, Assuming stereo\n";
79
+ $isMonos{$fx} = 1;
80
+ next;
81
+ }
82
while (<AU>) {
83
$isMonos{$fx} = 0 if (m/SupportedNumChannels/);
84
}
0 commit comments