diff options
author | notaz | 2010-11-18 15:08:15 +0200 |
---|---|---|
committer | notaz | 2010-11-18 15:08:15 +0200 |
commit | e906c010e1bea71ed4df425be97ce45dc777818c (patch) | |
tree | 08776f015004a3f4ae2222a51ff2993e23a1b129 /plugins/dfsound | |
parent | f2bd6ff85d23f3e421b2f30f86080d71d4e95046 (diff) | |
download | pcsx_rearmed-e906c010e1bea71ed4df425be97ce45dc777818c.tar.gz pcsx_rearmed-e906c010e1bea71ed4df425be97ce45dc777818c.tar.bz2 pcsx_rearmed-e906c010e1bea71ed4df425be97ce45dc777818c.zip |
build plugins in
Diffstat (limited to 'plugins/dfsound')
-rw-r--r-- | plugins/dfsound/cfg.c | 4 | ||||
-rw-r--r-- | plugins/dfsound/cfg.h | 2 | ||||
-rw-r--r-- | plugins/dfsound/spu.c | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/plugins/dfsound/cfg.c b/plugins/dfsound/cfg.c index 2acb9c3..cc8eeea 100644 --- a/plugins/dfsound/cfg.c +++ b/plugins/dfsound/cfg.c @@ -84,7 +84,7 @@ void StartCfgTool(char * pCmdLine) // READ LINUX CONFIG FILE
/////////////////////////////////////////////////////////
-void ReadConfigFile(void)
+static void ReadConfigFile(void)
{
FILE *in;char t[256];int len;
char * pB, * p;
@@ -153,7 +153,7 @@ void ReadConfigFile(void) // READ CONFIG called by spu funcs
/////////////////////////////////////////////////////////
-void ReadConfig(void)
+void ReadConfigSPU(void)
{
iVolume=2;
iXAPitch=0;
diff --git a/plugins/dfsound/cfg.h b/plugins/dfsound/cfg.h index f64d6d6..14f3a8d 100644 --- a/plugins/dfsound/cfg.h +++ b/plugins/dfsound/cfg.h @@ -15,5 +15,5 @@ * *
***************************************************************************/
-void ReadConfig(void);
+void ReadConfigSPU(void);
void StartCfgTool(char * pCmdLine);
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index c086c06..7805828 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -926,7 +926,7 @@ long CALLBACK SPUinit(void) iSPUIRQWait = 1; lastch = -1; - ReadConfig(); // read user stuff + ReadConfigSPU(); // read user stuff SetupStreams(); // prepare streaming return 0; @@ -1008,6 +1008,7 @@ void CALLBACK SPUregisterCDDAVolume(void (CALLBACK *CDDAVcallback)(unsigned shor } // COMMON PLUGIN INFO FUNCS +/* char * CALLBACK PSEgetLibName(void) { return _(libraryName); @@ -1027,3 +1028,4 @@ char * SPUgetLibInfos(void) { return _(libraryInfo); } +*/ |