nicolasgramlich / AndEngineExamples

AndEngine - Examples
http://www.andengine.org
375 stars 332 forks source link

Fix sequence params in constructor TextBreakExample #14

Open andreronquetti opened 12 years ago

andreronquetti commented 12 years ago

Before: new TextOptions(AutoWrap.LETTERS, AUTOWRAP_WIDTH, Text.LEADING_DEFAULT, HorizontalAlign.CENTER)

Now: new TextOptions(AutoWrap.LETTERS, AUTOWRAP_WIDTH, HorizontalAlign.CENTER, Text.LEADING_DEFAULT)

Thanks.