Search found 2 matches

by JordanWeber
Mon Aug 05, 2013 20:01
Forum: Bug Reports, Suggestions, Feature Requests
Topic: 0.8 repo: String.h on Windows
Replies: 3
Views: 7675

Re: 0.8 repo: String.h on Windows

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"
by JordanWeber
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...

Go to advanced search