Skip to content

Commit

Permalink
Crappy patch to add reverb and a tad of chorus to all MIDI instruments
Browse files Browse the repository at this point in the history
  • Loading branch information
k3yw committed Jan 6, 2024
1 parent 061753f commit 87b6fe4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Robust.Client/Audio/Midi/MidiRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ public byte MidiProgram
continue;

SendMidiEvent(RobustMidiEvent.ProgramChange(i, value, SequencerTick));
SendMidiEvent(RobustMidiEvent.ControlChange(i, 91, 127, SequencerTick));
SendMidiEvent(RobustMidiEvent.ControlChange(i, 80, 127, SequencerTick));
SendMidiEvent(RobustMidiEvent.ControlChange(i, 93, 127, SequencerTick));
}
}

Expand Down

0 comments on commit 87b6fe4

Please sign in to comment.