summaryrefslogtreecommitdiff
path: root/plugins/dfsound/spu.c
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-05-30 08:38:29 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-05-30 08:38:29 +0000
commit502b3aecd646c124c99f82be813030a694782fcf (patch)
tree873a95ebef323d69d5688d86378c9e5ee452146f /plugins/dfsound/spu.c
parent928e43def776ab2cb40dbca87316ef956b805249 (diff)
downloadpcsxr-502b3aecd646c124c99f82be813030a694782fcf.tar.gz
supported translation for plugin config utilities
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@23603 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins/dfsound/spu.c')
-rw-r--r--plugins/dfsound/spu.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c
index e6dd2776..ce697382 100644
--- a/plugins/dfsound/spu.c
+++ b/plugins/dfsound/spu.c
@@ -24,11 +24,6 @@
#include "dsoundoss.h"
#include "regs.h"
-// spu version infos/name
-const unsigned char version = 1;
-const unsigned char revision = 0;
-const unsigned char build = 0;
-
#if defined(USEALSA)
static char * libraryName = "ALSA Sound";
#elif defined (USEOSS)
@@ -914,7 +909,7 @@ unsigned long CALLBACK PSEgetLibType(void)
unsigned long CALLBACK PSEgetLibVersion(void)
{
- return version<<16|revision<<8|build;
+ return (1 << 16) | (6 << 8);
}
char * SPUgetLibInfos(void)