summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-05-17 16:20:12 +0200
committerGitHub <noreply@github.com>2021-05-17 16:20:12 +0200
commit7c721859170881a0e9f1e314837ba9fe28dc5110 (patch)
tree3f489b1d183e04b1ae96a6038d2434141ff00f13
parentb0a51bf9fe6b35cf4e2a76ec067d76349ca9b75c (diff)
parentdf52f5de75e8e910cb3eba8434b9283e985d1ce4 (diff)
Merge pull request #48792 from foxydevloper/fix-inputeventmidi-typo
Fix typo in InputEventMIDI string
-rw-r--r--core/input/input_event.cpp2
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() {