From 0facac847fd9cde7556a53a0d19407b93b3e3c15 Mon Sep 17 00:00:00 2001 From: "SND\\weimingzhi_cp" Date: Tue, 14 Dec 2010 08:15:46 +0000 Subject: MaddTheSane: - Clean up the Xcode projects a bit. - Added 64-bit mode on Mac. - Made it so that the SDK was set on the Xcode projects. - Enabled PowerPC support. (Patch #7730). git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@61171 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/plugins/DFSound/src/macosx.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'macosx/plugins/DFSound/src') diff --git a/macosx/plugins/DFSound/src/macosx.c b/macosx/plugins/DFSound/src/macosx.c index f329ffcd..4919cbea 100755 --- a/macosx/plugins/DFSound/src/macosx.c +++ b/macosx/plugins/DFSound/src/macosx.c @@ -99,11 +99,12 @@ void SetupSound(void) sndHeader.baseFrequency = kMiddleC; sndHeader.numFrames = buffer_size; sndHeader.sampleSize = 16; -#ifdef __POWERPC__ - sndHeader.format = k16BitBigEndianFormat; -#else - sndHeader.format = k16BitLittleEndianFormat; -#endif +//#ifdef __POWERPC__ +// sndHeader.format = k16BitBigEndianFormat; +//#else +// sndHeader.format = k16BitLittleEndianFormat; +//#endif + sndHeader.format = k16BitNativeEndianFormat; sndHeader.compressionID = fixedCompression; if (soundBufferAt != -1) -- cgit v1.2.3