Commit 83e1d1c8 authored by cutealien's avatar cutealien

Fix some minor problem in examples with irrklang on mingw reported by AReichl.


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5060 dfc29bdd-3216-0410-991c-e03cc46cb475
parent f4687fb2
...@@ -27,7 +27,7 @@ struct soundfile: public IFileReader ...@@ -27,7 +27,7 @@ struct soundfile: public IFileReader
virtual bool seek(ik_s32 finalPos, bool relativeMovement = false) { return file->seek ( finalPos, relativeMovement ); } virtual bool seek(ik_s32 finalPos, bool relativeMovement = false) { return file->seek ( finalPos, relativeMovement ); }
virtual ik_s32 getSize(){ return file->getSize (); } virtual ik_s32 getSize(){ return file->getSize (); }
virtual ik_s32 getPos() {return file->getPos (); } virtual ik_s32 getPos() {return file->getPos (); }
virtual const ik_c8* getFileName() { return file->getFileName (); } virtual const ik_c8* getFileName() { return file->getFileName().c_str(); }
io::IReadFile* file; io::IReadFile* file;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment