From 76c992efdc527b98df0b965f680a55fe81d0db00 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 15 Sep 2025 15:13:48 +0200 Subject: [PATCH] note about the memory leak I could not locate within my code. hint: I couldn't locate it, because it isn't in my code. --- src/io/window.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/io/window.c b/src/io/window.c index 2a4504a..e93779c 100644 --- a/src/io/window.c +++ b/src/io/window.c @@ -29,6 +29,8 @@ int window_init(void) { glfwWindowHint(GLFW_GREEN_BITS, 8); glfwWindowHint(GLFW_BLUE_BITS, 8); glfwWindowHint(GLFW_ALPHA_BITS, 0); + /* NOTE: on my system; x86_64, GTX 1650 580.82.09-2, X11, i3, this causes one direct, 2 indirect memory leaks. + * This is not my fault, and can safely be ignored. */ win = glfwCreateWindow(640, 480, "MCA-Selector lite", NULL, NULL); if (!win) return 1;