mirror of
https://github.com/edubart/otclient.git
synced 2025-10-19 14:03:26 +02:00
more fixes to compiling with gcc 4.6
This commit is contained in:
@@ -33,8 +33,8 @@ public:
|
||||
virtual ~SoundFile() { }
|
||||
static SoundFilePtr loadSoundFile(const std::string& filename);
|
||||
|
||||
virtual int read(void *buffer, int bufferSize) = 0;
|
||||
virtual void reset() = 0;
|
||||
virtual int read(void *buffer, int bufferSize) { return -1; }
|
||||
virtual void reset() { }
|
||||
bool eof() { return m_file->eof(); }
|
||||
|
||||
ALenum getSampleFormat();
|
||||
|
Reference in New Issue
Block a user