gpu_neon: do list resubmit detection
[pcsx_rearmed.git] / plugins / dfsound / alsa.c
index 2eba878..7e59433 100644 (file)
@@ -40,8 +40,7 @@ void SetupSound(void)
  unsigned int period_time = buffer_time / 4;
  int err;
 
  unsigned int period_time = buffer_time / 4;
  int err;
 
- if (iDisStereo) pchannels = 1;
- else pchannels=2;
+ pchannels=2;
 
  pspeed = 44100;
  format = SND_PCM_FORMAT_S16;
 
  pspeed = 44100;
  format = SND_PCM_FORMAT_S16;
@@ -153,6 +152,5 @@ void SoundFeedStreamData(unsigned char* pSound,long lBytes)
 
  if (snd_pcm_state(handle) == SND_PCM_STATE_XRUN)
   snd_pcm_prepare(handle);
 
  if (snd_pcm_state(handle) == SND_PCM_STATE_XRUN)
   snd_pcm_prepare(handle);
- snd_pcm_writei(handle,pSound,
-                iDisStereo ? lBytes / 2 : lBytes / 4);
+ snd_pcm_writei(handle,pSound, lBytes / 4);
 }
 }