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
master
cutealien 2015-03-02 13:58:33 +00:00
parent f4687fb2e9
commit 83e1d1c80a
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ struct soundfile: public IFileReader
virtual bool seek(ik_s32 finalPos, bool relativeMovement = false) { return file->seek ( finalPos, relativeMovement ); }
virtual ik_s32 getSize(){ return file->getSize (); }
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;
};