From b14f25fa6b066b354a55c55fd72d6f2399c12b4b Mon Sep 17 00:00:00 2001 From: Nic Barker Date: Sat, 28 Dec 2024 18:49:12 +1300 Subject: [PATCH] remove straggling printf --- examples/introducing-clay-video-demo/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/introducing-clay-video-demo/main.c b/examples/introducing-clay-video-demo/main.c index 77fd3b3..85c28c8 100644 --- a/examples/introducing-clay-video-demo/main.c +++ b/examples/introducing-clay-video-demo/main.c @@ -78,7 +78,6 @@ int main(void) { Clay_Raylib_Initialize(1024, 768, "Introducing Clay Demo", FLAG_WINDOW_RESIZABLE | FLAG_WINDOW_HIGHDPI | FLAG_MSAA_4X_HINT | FLAG_VSYNC_HINT); // Extra parameters to this function are new since the video was published uint64_t clayRequiredMemory = Clay_MinMemorySize(); - printf("%lld", clayRequiredMemory); Clay_Arena clayMemory = (Clay_Arena) { .memory = malloc((size_t)1024 * 1024 * 1024 * 1024), .capacity = clayRequiredMemory