(svn r3385) -Fix: [OSX] fixed endian issue in cocoa sound driver. Now it works correctly on x86 too (hopefully)

This commit is contained in:
bjarni 2006-01-07 13:21:04 +00:00
parent 473b3072ea
commit c86e6e008d
1 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,8 @@ static const char *CocoaSoundStart(const char * const *parm)
requestedDesc.mBitsPerChannel = 16;
requestedDesc.mFormatFlags |= kLinearPCMFormatFlagIsSignedInteger;
#if 1 // Big endian?
#ifdef TTD_BIG_ENDIAN
requestedDesc.mFormatFlags |= kLinearPCMFormatFlagIsBigEndian;
#endif