DEADSOFTWARE

sound stub driver: disable error messages in log
[d2df-sdl.git] / src / engine / e_sound_stub.inc
index 7e3349f0d15c3b953ad95add3c542343c1c8d1d4..a44753d6b598fd9c0f9ac4c390af506ebe89cd1d 100644 (file)
@@ -84,13 +84,13 @@ implementation
   function e_LoadSound(FileName: String; var ID: DWORD; isMusic: Boolean; ForceNoLoop: Boolean = False): Boolean;
   begin
     ID := NO_SOUND_ID;
-    result := false
+    result := true
   end;
 
   function e_LoadSoundMem(pData: Pointer; Length: Integer; var ID: DWORD; isMusic: Boolean; ForceNoLoop: Boolean = False): Boolean;
   begin
     ID := NO_SOUND_ID;
-    result := false
+    result := true
   end;
 
   function e_PlaySound (ID: DWORD): Integer;