mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-23 06:33:11 +00:00
Update rexm.c
This commit is contained in:
parent
eb816898e5
commit
86ec1c08c2
@ -2287,8 +2287,16 @@ static void UpdateSourceMetadata(const char *exSrcPath, const rlExampleInfo *inf
|
|||||||
|
|
||||||
// Update copyright message
|
// Update copyright message
|
||||||
// String: "* Copyright (c) 2019-2025 Contributor Name (@github_user) and Ramon Santamaria (@raysan5)"
|
// String: "* Copyright (c) 2019-2025 Contributor Name (@github_user) and Ramon Santamaria (@raysan5)"
|
||||||
exTextUpdated[4] = TextReplaceBetween(exTextUpdated[3],
|
if (info->yearCreated == info->yearReviewed)
|
||||||
TextFormat("%i-%i %s (@%s", info->yearCreated, info->yearReviewed, info->author, info->authorGitHub), "Copyright (c) ", ")");
|
{
|
||||||
|
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
|
// Update window title
|
||||||
// String: "InitWindow(screenWidth, screenHeight, "raylib [shaders] example - texture drawing");"
|
// String: "InitWindow(screenWidth, screenHeight, "raylib [shaders] example - texture drawing");"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user