mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
Renamed Decoder:getBits to Decoder:getBitDepth (see issue #636)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user