summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFSound/src
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-12-14 08:15:46 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-12-14 08:15:46 +0000
commit0facac847fd9cde7556a53a0d19407b93b3e3c15 (patch)
tree70dc1ea116b8c06d4647aca653d9a2e56e551c97 /macosx/plugins/DFSound/src
parentf6977b75b9a3cebff0ac73a9e751941dea4d7e42 (diff)
downloadpcsxr-0facac847fd9cde7556a53a0d19407b93b3e3c15.tar.gz
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
Diffstat (limited to 'macosx/plugins/DFSound/src')
-rwxr-xr-xmacosx/plugins/DFSound/src/macosx.c11
1 files changed, 6 insertions, 5 deletions
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)