From 8e3ff80e937bde0f41d69fb09febb5569d458de3 Mon Sep 17 00:00:00 2001 From: RobinsAviary Date: Tue, 30 Sep 2025 07:27:04 -0400 Subject: [PATCH] remove note about conventions, remove period --- examples/core/core_delta_time.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/core/core_delta_time.c b/examples/core/core_delta_time.c index 26ae5830b..aeedd7fff 100644 --- a/examples/core/core_delta_time.c +++ b/examples/core/core_delta_time.c @@ -1,7 +1,3 @@ -/* -4. Code should follow raylib conventions: https://github.com/raysan5/raylib/wiki/raylib-coding-conventions -Try to be very organized, using line-breaks appropiately - /******************************************************************************************* * * raylib [core] example - delta time @@ -101,7 +97,7 @@ int main(void) { if (currentFps < 0) { - // Clamp values below 0. + // Clamp values below 0 currentFps = 0; }