ソースを参照

Merge pull request #749 from Syphonx/master

LoadBMFont filepath fix
pull/755/head
Ray 5年前
committed by GitHub
コミット
dde99f45d9
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      src/text.c

+ 4
- 0
src/text.c ファイルの表示

@ -1406,6 +1406,10 @@ static Font LoadBMFont(const char *fileName)
char *lastSlash = NULL;
lastSlash = strrchr(fileName, '/');
if (lastSlash == NULL)
{
lastSlash = strrchr(fileName, '\\');
}
// NOTE: We need some extra space to avoid memory corruption on next allocations!
texPath = malloc(strlen(fileName) - strlen(lastSlash) + strlen(texFileName) + 4);

読み込み中…
キャンセル
保存