DEADSOFTWARE

compiler hint fix
[d2df-sdl.git] / src / engine / e_sound_fmod.inc
index 430735c7c6ae56761d2fdd5713a0665f9eed31a7..5e1c811fe994d0b119aca6cf3cb8347507e9d797 100644 (file)
@@ -19,6 +19,7 @@ uses
   fmod,
   fmodtypes,
   fmoderrors,
+  mempool,
   e_log,
   SysUtils;
 
@@ -30,7 +31,7 @@ type
     nRefs: Integer;
   end;
 
-  TBasicSound = class (TObject)
+  TBasicSound = class(TPoolObject)
   private
     FChannel: FMOD_CHANNEL;
 
@@ -90,7 +91,7 @@ var
 implementation
 
 uses
-  g_window, g_options, BinEditor;
+  g_window, g_options, utils;
 
 const
   N_CHANNELS = 512;