From 0dc4ba53dcc6ed2605c792647a33d58b12c23ee3 Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 16 Aug 2025 21:06:13 +0200 Subject: [PATCH] Minor format tweak --- src/rcore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rcore.c b/src/rcore.c index edb6fca7d..8ae4ee43c 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -514,11 +514,11 @@ static void RecordAutomationEvent(void); // Record frame events (to internal eve #if defined(_WIN32) && !defined(PLATFORM_DESKTOP_RGFW) // NOTE: We declare Sleep() function symbol to avoid including windows.h (kernel32.lib linkage required) -__declspec(dllimport) void __stdcall Sleep(unsigned long msTimeout); // Required for: WaitTime() +__declspec(dllimport) void __stdcall Sleep(unsigned long msTimeout); // Required for: WaitTime() #endif #if !defined(SUPPORT_MODULE_RTEXT) -const char *TextFormat(const char *text, ...); // Formatting of text with variables to 'embed' +const char *TextFormat(const char *text, ...); // Formatting of text with variables to 'embed' #endif // !SUPPORT_MODULE_RTEXT #if defined(PLATFORM_DESKTOP)