Skip to content

Commit c06a19e

Browse files
committed
Updated to latest version
1 parent 69a367d commit c06a19e

File tree

85 files changed

+8186
-4853
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+8186
-4853
lines changed

Engine/Audio/Formats/TERRA_MIDI.pas

+3-2
Original file line numberDiff line numberDiff line change
@@ -806,8 +806,9 @@ function MidiTrack.GetTrack(index: integer): MidiEventTrack;
806806
Current := _LastTime - _StartTime;
807807
Length := Self.GetTrackDuration();
808808

809-
(*For I := 0 to Pred(_EventTrackCount) Do
810-
_EventTracks[i].Update(Current, Length); *)
809+
For I := 0 to Pred(_EventTrackCount) Do
810+
_EventTracks[i].Update(Current, Length);
811+
811812
_Playing := false;
812813
End;
813814

Engine/Audio/TERRA_SoundManager.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
S := '';
200200
If Not Assigned(DeviceList) Then
201201
Begin
202-
DeviceList := TERRA_Collections.List.Create();
202+
DeviceList := TERRA_Collections.List.Create(collection_Unsorted);
203203
List := alcGetString(Nil,QueryID);
204204
If Assigned(List) Then
205205
While (List^<>#0) Do

0 commit comments

Comments
 (0)