Skip to content

Commit

Permalink
TSAGE: Remove incorrect endian-specific read in audio code.
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzie committed Aug 6, 2011
1 parent ad936e9 commit 72160f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/tsage/sound.cpp
Expand Up @@ -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();
Expand Down

0 comments on commit 72160f5

Please sign in to comment.