Browse Source

moved SoundData::load back to private

--HG--
branch : minor-manual-decoders
Raidho 8 years ago
parent
commit
3b37cc9462
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/modules/sound/SoundData.h

+ 2 - 1
src/modules/sound/SoundData.h

@@ -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;