Fixed offset check in GenImageFontAtlas (#1171)

* Fixed offset check in GenImageFontAtlas

* Fixed code formatting to follow raylib notation rules
This commit is contained in:
SasLuca 2020-04-02 22:53:29 +01:00 committed by GitHub
parent 7ef114d1da
commit 8444c3f705
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -652,7 +652,7 @@ Image GenImageFontAtlas(const CharInfo *chars, Rectangle **charRecs, int charsCo
// Move atlas position X for next character drawing
offsetX += (chars[i].image.width + 2*padding);
if (offsetX >= (atlas.width - chars[i].image.width - padding))
if (offsetX >= (atlas.width - chars[i].image.width - 2*padding))
{
offsetX = padding;