diff options
Diffstat (limited to 'macosx/plugins/DFSound/src')
| -rwxr-xr-x | macosx/plugins/DFSound/src/macosx.c | 11 |
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)
|
