mirror of
https://github.com/love2d/love.git
synced 2026-08-17 02:58:31 +02:00
Renamed Decoder:getBits to Decoder:getBitDepth (see issue #636)
This commit is contained in:
@@ -36,8 +36,8 @@ class SoundData : public love::Data
|
||||
public:
|
||||
|
||||
SoundData(Decoder *decoder);
|
||||
SoundData(int samples, int sampleRate, int bits, int channels);
|
||||
SoundData(void *d, int samples, int sampleRate, int bits, int channels);
|
||||
SoundData(int samples, int sampleRate, int bitDepth, int channels);
|
||||
SoundData(void *d, int samples, int sampleRate, int bitDepth, int channels);
|
||||
|
||||
virtual ~SoundData();
|
||||
|
||||
@@ -61,7 +61,7 @@ private:
|
||||
int size;
|
||||
|
||||
int sampleRate;
|
||||
int bits;
|
||||
int bitDepth;
|
||||
int channels;
|
||||
}; // SoundData
|
||||
|
||||
|
||||
Reference in New Issue
Block a user