PoolVector is gone, replaced by Vector
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
This commit is contained in:
parent
fb8c93c10b
commit
3205a92ad8
406 changed files with 5314 additions and 8271 deletions
|
|
@ -66,9 +66,9 @@ Error MIDIDriverWinMidi::open() {
|
|||
return OK;
|
||||
}
|
||||
|
||||
PoolStringArray MIDIDriverWinMidi::get_connected_inputs() {
|
||||
PackedStringArray MIDIDriverWinMidi::get_connected_inputs() {
|
||||
|
||||
PoolStringArray list;
|
||||
PackedStringArray list;
|
||||
|
||||
for (int i = 0; i < connected_sources.size(); i++) {
|
||||
HMIDIIN midi_in = connected_sources[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue