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
+3 -3
View File
@@ -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