瀏覽代碼

Amend comment to explain what LoadCodepoints is doing.

As a beginner, it was not clear to me what the purpose of the LoadCodepoints function is. I am trying to help past me.
pull/4787/head
Jay Rhoden 1 月之前
committed by GitHub
父節點
當前提交
a5ea679319
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: B5690EEEBB952194
共有 1 個檔案被更改,包括 3 行新增2 行删除
  1. +3
    -2
      examples/text/text_codepoints_loading.c

+ 3
- 2
examples/text/text_codepoints_loading.c 查看文件

@ -38,7 +38,8 @@ int main(void)
InitWindow(screenWidth, screenHeight, "raylib [text] example - codepoints loading");
// Get codepoints from text
// Convert each utf-8 character into its
// corresponding codepoint in the font file.
int codepointCount = 0;
int *codepoints = LoadCodepoints(text, &codepointCount);
@ -155,4 +156,4 @@ static int *CodepointRemoveDuplicates(int *codepoints, int codepointCount, int *
*codepointsResultCount = codepointsNoDupsCount;
return codepointsNoDups;
}
}

Loading…
取消
儲存