Просмотр исходного кода

Reviewed and reverted unneeded module check, `rtextures` should not depend on `rtext`

pull/4430/head
Ray 1 месяц назад
Родитель
Сommit
708089f560
1 измененных файлов: 1 добавлений и 6 удалений
  1. +1
    -6
      src/rtextures.c

+ 1
- 6
src/rtextures.c Просмотреть файл

@ -1111,8 +1111,7 @@ Image GenImageText(int width, int height, const char *text)
{
Image image = { 0 };
#if defined(SUPPORT_MODULE_RTEXT)
int textLength = TextLength(text);
int textLength = (int)strlen(text);
int imageViewSize = width*height;
image.width = width;
@ -1122,10 +1121,6 @@ Image GenImageText(int width, int height, const char *text)
image.mipmaps = 1;
memcpy(image.data, text, (textLength > imageViewSize)? imageViewSize : textLength);
#else
TRACELOG(LOG_WARNING, "IMAGE: GenImageText() requires module: rtext");
image = GenImageColor(width, height, BLACK); // Generating placeholder black image rectangle
#endif
return image;
}

Загрузка…
Отмена
Сохранить