I had to do the following in all CEGUI source to avoid this error:
Rename the CEGUI source "String.h" to "CEGUIString.h"
Replace all:
CEGUI/String.h
with
CEGUI/CEGUIString.h
"../String.h"
with
"../CEGUIString.h"
Search found 2 matches
- Mon Aug 05, 2013 20:01
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: 0.8 repo: String.h on Windows
- Replies: 3
- Views: 7675
- Mon Apr 01, 2013 12:33
- Forum: Bug Reports, Suggestions, Feature Requests
- Topic: Animation::RM_Bounce endless loop
- Replies: 0
- Views: 3986
Animation::RM_Bounce endless loop
When attempting to start my program, it gets caught in an infinite loop when using RM_BOUNCE. delta = 0; newPosition = 0; So the following gets stuck, because newPosition never changes: newPosition = -newPosition; CEGUIAnimationInstance.cpp else if (d_definition->getReplayMode() == Animation::RM_Bou...