What steps will reproduce the problem?
1. run the andengine examples
2. select Text
3. select Using a StrokeFont
What is the expected output? What do you see instead?
Expected output: Not a FC. But I see a FC.
What version of the product are you using? On what operating system?
Latest stuff out of the hg repos. Just pulled it at 8:00 PM EST on 31 Aug 2011.
Please provide any additional information below.
Easy fix: There's a stack overflow due to an infinite loop in
BaseGameActivity.java line 137. The original code is:
public FontManager getFontManager() {
return this.getFontManager();
}
The desired code is:
public FontManager getFontManager() {
return this.mEngine.getFontManager();
}
Making the change will fix the AndEngine example.
Original issue reported on code.google.com by mfs...@gmail.com on 1 Sep 2011 at 12:53
Original issue reported on code.google.com by
mfs...@gmail.com
on 1 Sep 2011 at 12:53