Search found 3 matches
- Sat May 31, 2008 7:21 am
- Forum: Bug reports
- Topic: possible bug in irr::core::map
- Replies: 4
- Views: 812
possible bug in irr::core::map
I am not sure if this is a bug, but I am crashing from the following line in irrMap.h (line 593): Node* newNodesUncle = newNode->getParent()->getParent()->getLeftChild(); Is it guaranteed that the node in question has a grandparent? I am not familiar enough with Red/Black trees to know. I am getting...
- Thu May 22, 2008 6:16 pm
- Forum: Bug reports
- Topic: KeyReleased hangs device->run (Mac OSX X11 irrlicht v.1.3
- Replies: 2
- Views: 609
So I made the following change as per your suggestion. The old code is commented out below the new code. It seems to work with my applcation both on linux and mac. As a side note, your engine is great. The code is extremely readable and easy to get familiar with. Good work! -Abel // check for Autore...
- Wed May 21, 2008 10:13 pm
- Forum: Bug reports
- Topic: KeyReleased hangs device->run (Mac OSX X11 irrlicht v.1.3
- Replies: 2
- Views: 609
KeyReleased hangs device->run (Mac OSX X11 irrlicht v.1.3
I ran into this issue when dealing with keyboard input. After a keyboard button was pressed and released, our call to IrrlichtDevice::run() would hang because of the call to XPeekEvent (which blocks if there are no more events on the queue) Perhaps we wrote our code wrong, but our program works fine...