diff --git a/JGE/src/JLBFont.cpp b/JGE/src/JLBFont.cpp index 61ef856ca..85d13ebae 100644 --- a/JGE/src/JLBFont.cpp +++ b/JGE/src/JLBFont.cpp @@ -222,7 +222,7 @@ float JLBFont::GetStringWidth(const char *string) const { ch = *p - 32; p++; - //if (ch < 0) continue; //TODO useless test per compiler's message, char always positive, bug needs fixing here + if (ch < 0) continue; len += mCharWidth[ch+mBase] + mTracking; } len -= mTracking;