Renamed Decoder:getBits to Decoder:getBitDepth (see issue #636)

This commit is contained in:
Alex Szpakowski
2013-08-11 04:15:42 -03:00
parent daf50698b8
commit 66a773d2a7
20 changed files with 52 additions and 52 deletions
+2 -2
View File
@@ -34,9 +34,9 @@ SoundData *Sound::newSoundData(Decoder *decoder)
return new SoundData(decoder);
}
SoundData *Sound::newSoundData(int samples, int sampleRate, int bits, int channels)
SoundData *Sound::newSoundData(int samples, int sampleRate, int bitDepth, int channels)
{
return new SoundData(samples, sampleRate, bits, channels);
return new SoundData(samples, sampleRate, bitDepth, channels);
}