diff options
author | Trashguy <trashguy@gmail.com> | 2024-10-11 12:21:42 -0400 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-10-13 15:05:24 -0400 |
commit | 9901f655fb46bd345770ad5f4a1638c4051b1816 (patch) | |
tree | bb22b4881145f122568c8f2e51e912078ad1b4fc /drivers/coremidi/midi_driver_coremidi.cpp | |
parent | 6699ae7897658e44efc3cfb2cba91c11a8f5aa6a (diff) | |
download | redot-engine-9901f655fb46bd345770ad5f4a1638c4051b1816.tar.gz |
Rebrand Godot 4.3 to Redot
Diffstat (limited to 'drivers/coremidi/midi_driver_coremidi.cpp')
-rw-r--r-- | drivers/coremidi/midi_driver_coremidi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/coremidi/midi_driver_coremidi.cpp b/drivers/coremidi/midi_driver_coremidi.cpp index f6cc59471e..b3481488b8 100644 --- a/drivers/coremidi/midi_driver_coremidi.cpp +++ b/drivers/coremidi/midi_driver_coremidi.cpp @@ -61,7 +61,7 @@ Error MIDIDriverCoreMidi::open() { ERR_FAIL_COND_V_MSG(client || core_midi_closed, FAILED, "MIDIDriverCoreMidi cannot be reopened."); - CFStringRef name = CFStringCreateWithCString(nullptr, "Godot", kCFStringEncodingASCII); + CFStringRef name = CFStringCreateWithCString(nullptr, "Redot", kCFStringEncodingASCII); OSStatus result = MIDIClientCreate(name, nullptr, nullptr, &client); CFRelease(name); if (result != noErr) { @@ -69,7 +69,7 @@ Error MIDIDriverCoreMidi::open() { return ERR_CANT_OPEN; } - result = MIDIInputPortCreate(client, CFSTR("Godot Input"), MIDIDriverCoreMidi::read, (void *)this, &port_in); + result = MIDIInputPortCreate(client, CFSTR("Redot Input"), MIDIDriverCoreMidi::read, (void *)this, &port_in); if (result != noErr) { ERR_PRINT("MIDIInputPortCreate failed, code: " + itos(result)); return ERR_CANT_OPEN; |