Procházet zdrojové kódy

Fixed offset check in GenImageFontAtlas (#1171)

* Fixed offset check in GenImageFontAtlas

* Fixed code formatting to follow raylib notation rules
pull/1172/head
SasLuca před 5 roky
odevzdal GitHub
rodič
revize
8444c3f705
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/text.c

+ 1
- 1
src/text.c Zobrazit soubor

@ -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;

Načítá se…
Zrušit
Uložit