TSAGE: Remove incorrect endian-specific read in audio code.

This commit is contained in:
Alyssa Milburn 2011-08-06 17:57:34 +02:00
parent ad936e9f8c
commit 72160f53aa

View file

@ -1357,7 +1357,7 @@ bool SoundManager::_sfInstallDriver(SoundDriver *driver) {
sfManager()._installedDrivers.push_back(driver);
driver->_groupOffset = driver->getGroupData();
driver->_groupMask = READ_LE_UINT32(driver->_groupOffset);
driver->_groupMask = driver->_groupOffset->groupMask;
_sfExtractGroupMask();
_sfRethinkSoundDrivers();