You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-20 14:45:44 +00:00
PoolVector is gone, replaced by Vector
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
This commit is contained in:
committed by
Juan Linietsky
parent
fb8c93c10b
commit
3205a92ad8
@@ -93,9 +93,9 @@ void MIDIDriverCoreMidi::close() {
|
||||
}
|
||||
}
|
||||
|
||||
PoolStringArray MIDIDriverCoreMidi::get_connected_inputs() {
|
||||
PackedStringArray MIDIDriverCoreMidi::get_connected_inputs() {
|
||||
|
||||
PoolStringArray list;
|
||||
PackedStringArray list;
|
||||
|
||||
for (int i = 0; i < connected_sources.size(); i++) {
|
||||
MIDIEndpointRef source = connected_sources[i];
|
||||
|
||||
Reference in New Issue
Block a user