moved SoundData::load back to private

--HG--
branch : minor-manual-decoders
This commit is contained in:
Raidho
2016-10-25 00:58:44 +03:00
parent a605243709
commit 3b37cc9462
+2 -1
View File
@@ -54,10 +54,11 @@ public:
void setSample(int i, float sample);
float getSample(int i) const;
void load(int samples, int sampleRate, int bitDepth, int channels, void *newData = 0);
private:
void load(int samples, int sampleRate, int bitDepth, int channels, void *newData = 0);
uint8 *data;
size_t size;