Ver a proveniência
Fixed offset check in GenImageFontAtlas (#1171)
* Fixed offset check in GenImageFontAtlas
* Fixed code formatting to follow raylib notation rules
pull/1172/head
SasLuca
há 5 anos
committed by
GitHub
ascendente
cometimento
8444c3f705
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros alterados com
1 adições e
1 eliminações
-
src/text.c
|
|
|
@ -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 - mi">2*padding)) |
|
|
|
{ |
|
|
|
offsetX = padding; |
|
|
|
|
|
|
|
|