mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
Fix for Issue #152 for Unmatch Bitstream
This corrects for changes made in Pull Request #112.
This commit is contained in:
parent
7368dc2489
commit
a2466bfd3a
2 changed files with 5 additions and 5 deletions
|
|
@ -576,8 +576,8 @@ void SFXDescription::unpackData( BitStream *stream )
|
|||
Parent::unpackData( stream );
|
||||
|
||||
mVolume = stream->readFloat( 6 );
|
||||
mPitch = stream->readFloat( 6 );
|
||||
mPriority = stream->readFloat( 6 );
|
||||
stream->read( &mPitch );
|
||||
stream->read( &mPriority );
|
||||
|
||||
mIsLooping = stream->readFlag();
|
||||
mFadeLoops = stream->readFlag();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue