Skip to content

Commit

Permalink
WM_MO_REVERB must be OR'ed into mixer_options, not XOR'ed, during ini…
Browse files Browse the repository at this point in the history
…tial cmdline parse. picked from DevTest-Updates branch.
  • Loading branch information
sezero committed Jun 4, 2014
1 parent 8dedf15 commit 5086e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wildmidi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ int main(int argc, char **argv) {
rate = res;
break;
case 'b': /* Reverb */
mixer_options ^= WM_MO_REVERB;
mixer_options |= WM_MO_REVERB;
break;
case 'm': /* Master Volume */
master_volume = (unsigned char) atoi(optarg);
Expand Down

0 comments on commit 5086e44

Please sign in to comment.