diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-11-14 14:18:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 14:18:55 +0100 |
commit | f070cf9a75ad416e16c73af0f60f6a4fe41b18b8 (patch) | |
tree | f704c149f09efec65ea8b9e6d070e511823a0e5c | |
parent | 33e65f275444744b0e346be19c94674788803f05 (diff) | |
parent | 73db3b67df7a308c636d889d61f0071291122a4e (diff) |
Merge pull request #68644 from alcomposer/print_all_midi_event_info
-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 9dc071de9c..0a32b4bf68 100644 --- a/core/input/input_event.cpp +++ b/core/input/input_event.cpp @@ -1562,7 +1562,7 @@ String InputEventMIDI::as_text() const { } String InputEventMIDI::to_string() { - return vformat("InputEventMIDI: 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, controller_number=%d, controller_value=%d", channel, message, pitch, velocity, pressure, controller_number, controller_value); } void InputEventMIDI::_bind_methods() { |