summaryrefslogtreecommitdiff
path: root/plugins/dfsound/nullsnd.c
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-19 10:52:11 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-19 10:52:11 +0000
commit0956549379a239182714ca5f06bb40748e3a54a5 (patch)
treef3b4e0b2e5ef1125940ad6ae029ffdf066063484 /plugins/dfsound/nullsnd.c
parentb24d4d3cd394aa86691d69156f3fb108c3537582 (diff)
downloadpcsxr-0956549379a239182714ca5f06bb40748e3a54a5.tar.gz
Use SDL for sound plugin, reverted the change to BIAS in r48024. (and I'm too lazy to hunt down the bug with x64 dynarec :( feel free to revert this revert if not preferred :P)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@48308 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins/dfsound/nullsnd.c')
-rw-r--r--plugins/dfsound/nullsnd.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/dfsound/nullsnd.c b/plugins/dfsound/nullsnd.c
deleted file mode 100644
index 3d4662e3..00000000
--- a/plugins/dfsound/nullsnd.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include "stdafx.h"
-#define _IN_OSS
-#include "externals.h"
-
-#if !defined (USEALSA) && !defined (USEOSS) && !defined (USEPULSEAUDIO)
-
-#warning "Using NULL sound output..."
-
-// SETUP SOUND
-void SetupSound(void)
-{
-}
-
-// REMOVE SOUND
-void RemoveSound(void)
-{
-}
-
-// GET BYTES BUFFERED
-unsigned long SoundGetBytesBuffered(void)
-{
- return 0;
-}
-
-// FEED SOUND DATA
-void SoundFeedStreamData(unsigned char* pSound,long lBytes)
-{
-}
-
-#endif