Fixed type error in sound loading

This commit is contained in:
2015-10-01 12:51:29 +02:00
parent cb70cdfc5d
commit e1ff3825ee
+1 -1
View File
@@ -32,7 +32,7 @@ private:
short m_FormatType, m_Channels;
unsigned long m_SampleRate, m_AvgBytesPerSec;
short m_BytesPerSample, m_BitsPerSample;
unsigned long m_DataSize;
unsigned int m_DataSize;
std::map<std::string, ALuint> m_BufferCache;
ALuint LoadFile(std::string path);
};