Merge pull request #72 from abergmeier/fix_constr_order

Correct initialization order of idSoundVoice_OpenAL constructor.
This commit is contained in:
Robert Beckebans 2014-02-18 10:03:37 +01:00
commit 47cc4f37b6

View file

@ -53,8 +53,8 @@ idSoundVoice_OpenAL::idSoundVoice_OpenAL()
formatTag( 0 ),
numChannels( 0 ),
sampleRate( 0 ),
paused( true ),
hasVUMeter( false )
hasVUMeter( false ),
paused( true )
{
}