소스 검색

Update rexm.c

pull/5174/head
Ray 1 개월 전
부모
커밋
86ec1c08c2
1개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. +10
    -2
      tools/rexm/rexm.c

+ 10
- 2
tools/rexm/rexm.c 파일 보기

@ -2287,8 +2287,16 @@ static void UpdateSourceMetadata(const char *exSrcPath, const rlExampleInfo *inf
// Update copyright message
// String: "* Copyright (c) 2019-2025 Contributor Name (@github_user) and Ramon Santamaria (@raysan5)"
exTextUpdated[4] = TextReplaceBetween(exTextUpdated[3],
TextFormat("%i-%i %s (@%s", info->yearCreated, info->yearReviewed, info->author, info->authorGitHub), "Copyright (c) ", ")");
if (info->yearCreated == info->yearReviewed)
{
exTextUpdated[4] = TextReplaceBetween(exTextUpdated[3],
TextFormat("%i %s (@%s", info->yearCreated, info->author, info->authorGitHub), "Copyright (c) ", ")");
}
else
{
exTextUpdated[4] = TextReplaceBetween(exTextUpdated[3],
TextFormat("%i-%i %s (@%s", info->yearCreated, info->yearReviewed, info->author, info->authorGitHub), "Copyright (c) ", ")");
}
// Update window title
// String: "InitWindow(screenWidth, screenHeight, "raylib [shaders] example - texture drawing");"

불러오는 중...
취소
저장