DEADSOFTWARE

Sound: OpenAL: Streams can now be non-looping; XMP tweaks
[d2df-sdl.git] / src / engine / e_soundfile.pas
index 919715c5dea3dc3da6a7a9242748b10e5af7f87a..6cae52c6a5739335df7329212bfed65d266f09cf 100644 (file)
@@ -34,6 +34,7 @@ type
   protected
     FFormat: TSoundFormat;
     FStreaming: Boolean;
+    FLooping: Boolean;
 
   public
     function Load(Data: Pointer; Len: LongWord; SStreaming: Boolean): Boolean; virtual; abstract; overload;
@@ -48,6 +49,7 @@ type
 
     property Format: TSoundFormat read FFormat;
     property Streaming: Boolean read FStreaming;
+    property Looping: Boolean read FLooping write FLooping;
   end;
 
   TSoundLoaderFactory = class