Merge pull request #48792 from foxydevloper/fix-inputeventmidi-typo

Fix typo in InputEventMIDI string
This commit is contained in:
Rémi Verschelde 2021-05-17 16:20:12 +02:00 committed by GitHub
commit 7c72185917
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1457,7 +1457,7 @@ String InputEventMIDI::as_text() const {
}
String InputEventMIDI::to_string() {
return vformat("InputEvenMIDI: channel=%d, message=%d, pitch=%d, velocity=%d, pressure=%d", channel, message, pitch, velocity, pressure);
return vformat("InputEventMIDI: channel=%d, message=%d, pitch=%d, velocity=%d, pressure=%d", channel, message, pitch, velocity, pressure);
}
void InputEventMIDI::_bind_methods() {