DEADSOFTWARE

add options USE_XMP and USE_MPG123
[d2df-sdl.git] / src / engine / e_sound.pas
index 7616afd24e5fc0953eff36e62809b12d9c8f1c34..d689dfeca5e66feae9dd7e9755760aa1693e24c8 100644 (file)
@@ -1,4 +1,4 @@
-(* Copyright (C)  DooM 2D:Forever Developers
+(* Copyright (C)  Doom 2D: Forever Developers
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -19,5 +19,9 @@ unit e_sound;
 {$IFDEF USE_SDLMIXER}
   {$I e_sound_sdl.inc}
 {$ELSE}
-  {$I e_sound_fmod.inc}
+  {$IFDEF USE_OPENAL}
+    {$I e_sound_al.inc}
+  {$ELSE}
+    {$I e_sound_fmod.inc}
+  {$ENDIF}
 {$ENDIF}