add multitouch fixes
[drnoksnes] / soundux.h
index 29fc19d..e226ace 100644 (file)
--- a/soundux.h
+++ b/soundux.h
@@ -162,7 +162,6 @@ void S9xFixEnvelope (int channel, uint8 gain, uint8 adsr1, uint8 adsr2);
 void S9xStartSample (int channel);
 
 EXTERN_C void S9xMixSamples (signed short *buffer, int sample_count);
-EXTERN_C void S9xMixSamplesO(signed short *buffer, int sample_count, int sample_offset);
 void S9xSetPlaybackRate (uint32 rate);
 bool8 S9xInitSound (void);
 #endif
@@ -198,11 +197,7 @@ if ((v) > 127) \
     (v) = 127
 
 static inline void S9xSetSoundMute (bool8 mute)
-{
-    //bool8 old = so.mute_sound;
-    so.mute_sound = mute;
-    //return (old);
-}
+{    so.mute_sound = mute;}
 
 static inline void S9xSetEnvRate (Channel *ch, unsigned long rate, int direction, int target, unsigned int mode)
 {