Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArrayIndexOutOfBoundsException in getLength() method. #1

Open
NickUK opened this issue Jul 14, 2014 · 0 comments
Open

ArrayIndexOutOfBoundsException in getLength() method. #1

NickUK opened this issue Jul 14, 2014 · 0 comments

Comments

@NickUK
Copy link

NickUK commented Jul 14, 2014

This occurs in the getLength method: (gltext.java: 342)

int c = (int)text.charAt( i ) - CHAR_START; // Calculate Character Index (Offset by First Char in Font)
len += ( charWidths[c] * scaleX ); // Add Scaled Character Width to Total Length

If charAt(i) is a char > 96 (special char) then we get ArrayIndexOutOfBoundsException.
Needs something similar to :

if ( c < 0 || c >= CHAR_CNT) {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant