From b3f70f377293ad97f3df9ce10937c8ba143d0c46 Mon Sep 17 00:00:00 2001 From: Kartatz <105828205+Kartatz@users.noreply.github.com> Date: Tue, 7 May 2024 11:28:09 -0300 Subject: [PATCH] Disable LTO for now --- src/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem.c b/src/filesystem.c index e7163a5..2a46a2a 100644 --- a/src/filesystem.c +++ b/src/filesystem.c @@ -1149,7 +1149,7 @@ char* get_app_filename(char* const filename) { for (size_t index = 0; index < strlen(path) + 1; index++) { const char* const ch = &path[index]; - if (!(*ch == *COLON || *ch == '\0')) { + if (!(*ch == ':' || *ch == '\0')) { continue; }