Now the growings animation looks pretty cool :)
[supertux.git] / src / sound.h
index b6640a6..c2545a2 100644 (file)
 
 #include "defines.h"     /* get YES/NO defines */
 
-/* used to reserve some channels for panning effects */
-#define SOUND_RESERVED_CHANNELS 2
-
 /*global variable*/
 extern bool use_sound;           /* handle sound on/off menu and command-line option */
-extern bool use_music;           /* handle music on/off menu and command-line option */
+extern bool use_music;           /* handle music on/off menu and command-line */
 extern bool audio_device;        /* != 0: available and initialized */
 
 /* enum of different internal music types */
@@ -39,14 +36,6 @@ enum Music_Type {
   HERRING_MUSIC
 };
 
-
-/* panning effects: terrible :-) ! */
-enum Sound_Speaker {
-  SOUND_LEFT_SPEAKER = 0,
-  SOUND_RIGHT_SPEAKER = 1,
-  SOUND_CENTER_SPEAKER = -1
-};
-
 /* Sound files: */
 enum {
   SND_JUMP,
@@ -85,6 +74,5 @@ void close_audio( void );
 
 Mix_Chunk * load_sound(const std::string& file);
 void free_chunk(Mix_Chunk*chunk);
-void play_sound(Mix_Chunk * snd, enum Sound_Speaker whichSpeaker);
 
 #endif /*SUPERTUX_SOUND_H*/