summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-04 19:19:39 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-04 19:19:39 +0000
commitacdc17f7109813916e3b0ba1115efe1f5a98271b (patch)
tree3636577f15b006c775eb194472732edee2f60bff /plugins
parente8799fe621a86267ea50ae45ec03b5fb05c66905 (diff)
downloadpcsxr-acdc17f7109813916e3b0ba1115efe1f5a98271b.tar.gz
DoConfiguration() for DFSound on OS X returns an int, and the function it calls also returns an int. Let's combile the two.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85815 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/dfsound/spu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c
index f422b10f..57b64617 100755
--- a/plugins/dfsound/spu.c
+++ b/plugins/dfsound/spu.c
@@ -1434,7 +1434,7 @@ long CALLBACK SPUconfigure(void)
DialogBox(hInst,MAKEINTRESOURCE(IDD_CFGDLG),
GetActiveWindow(),(DLGPROC)DSoundDlgProc);
#elif defined (_MACOSX)
- DoConfiguration();
+ return DoConfiguration();
#else
StartCfgTool("configure");
#endif