diff options
author | fox <12120644+foxydevloper@users.noreply.github.com> | 2021-05-17 09:54:28 -0400 |
---|---|---|
committer | fox <12120644+foxydevloper@users.noreply.github.com> | 2021-05-17 09:54:28 -0400 |
commit | df52f5de75e8e910cb3eba8434b9283e985d1ce4 (patch) | |
tree | b8fee1c124c81fd873410c4b1b23af84c946ea91 | |
parent | 9cc17a8439d4909324da014a1d2e90cfaa9fb979 (diff) |
Fix typo in InputEventMIDI string
-rw-r--r-- | core/input/input_event.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/input/input_event.cpp b/core/input/input_event.cpp index b61fa169a1..0865ce0fac 100644 --- a/core/input/input_event.cpp +++ b/core/input/input_event.cpp @@ -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() { |