瀏覽代碼

[rtext] Don't return default font if LoadFontEx fails (#4077)

It is currently impossible to check a font loaded successfully with
IsFontReady because LoadFontEx will always return a valid font.

DrawTextEx has this check:
if (font.texture.id == 0) font = GetFontDefault();  // Security check in case of not valid font

So anyone relying on the default font as a fallback for fonts failing to
load should still be covered.
pull/4109/head
Peter0x44 5 月之前
committed by GitHub
父節點
當前提交
dfabbd8ba8
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: B5690EEEBB952194
共有 1 個檔案被更改,包括 0 行新增1 行删除
  1. +0
    -1
      src/rtext.c

+ 0
- 1
src/rtext.c 查看文件

@ -394,7 +394,6 @@ Font LoadFontEx(const char *fileName, int fontSize, int *codepoints, int codepoi
UnloadFileData(fileData);
}
else font = GetFontDefault();
return font;
}

Loading…
取消
儲存