Search found 4 matches
- Sun Jul 09, 2017 2:06 am
- Forum: Beginners Help
- Topic: smgr->getMesh problem (runtime error)
- Replies: 7
- Views: 1317
Re: smgr->getMesh problem (runtime error)
A segfault occurs there. http://i.imgur.com/vNd01XW.png Program received signal SIGSEGV, Segmentation fault. In ?? () () #2 0x0040154e in main () at B:\irrlicht\basicstart\main.cpp:27 B:\irrlicht\basicstart\main.cpp:27:711:beg:0x40154e At B:\irrlicht\basicstart\main.cpp:27 #2 0x0040154e in main () a...
- Thu Jul 06, 2017 10:32 pm
- Forum: Beginners Help
- Topic: smgr->getMesh problem (runtime error)
- Replies: 7
- Views: 1317
Re: smgr->getMesh problem (runtime error)
Not sure that it's actually the culprit, but in your screenshot , you seem to have forgotten to escape the '\' character in your path. Try this : IAnimatedMesh* mesh = smgr->getMesh("B:\\SDK\\irrlicht-1.8.4\\irrlicht-1.8.4\\media\\sydney.md2"); If that doesn't fix it, try to put a bre...
- Thu Jul 06, 2017 12:09 pm
- Forum: Beginners Help
- Topic: smgr->getMesh problem (runtime error)
- Replies: 7
- Views: 1317
Re: smgr->getMesh problem (runtime error)
Code is as follows #include <iostream> #include <irrlicht.h> using namespace std; using namespace irr; using namespace core; using namespace scene; using namespace video; using namespace io; using namespace gui; int main() { IrrlichtDevice *device = createDevice( video::EDT_SOFTW...
- Thu Jul 06, 2017 11:58 am
- Forum: Beginners Help
- Topic: smgr->getMesh problem (runtime error)
- Replies: 7
- Views: 1317
smgr->getMesh problem (runtime error)
Hi I am just starting Irllicht and I am working through the tutorials. However, in http://irrlicht.sourceforge.net/docu/example001.html at line : IAnimatedMesh* mesh = smgr->getMesh("../../media/sydney.md2"); This seems to hang the program and Windows cites a buffer overrun. If I remove th...