From 6c1400e62cf988a9279257846ca2610f8b748e59 Mon Sep 17 00:00:00 2001 From: kbz_8 Date: Wed, 4 Feb 2026 07:26:00 +0100 Subject: [PATCH] =?UTF-8?q?azy,=207h=20du=20matin,=20je=20sais=20pas=20?= =?UTF-8?q?=C3=A9crire?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- runtime/Sources/Core/Bridge.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/Sources/Core/Bridge.cpp b/runtime/Sources/Core/Bridge.cpp index 005cc67..a51899d 100644 --- a/runtime/Sources/Core/Bridge.cpp +++ b/runtime/Sources/Core/Bridge.cpp @@ -306,7 +306,7 @@ extern "C" } std::filesystem::path file(filepath); - if (std::strcmp(filepath, "default") != 0 && filepath !std::filesystem::exists(file)) + if (std::strcmp(filepath, "default") != 0 && !std::filesystem::exists(file)) { mlx::Error("TTF loader: unable to find file '%'", filepath); return; @@ -333,7 +333,7 @@ extern "C" } std::filesystem::path file(filepath); - if (std::strcmp(filepath, "default") != 0 && filepath !std::filesystem::exists(file)) + if (std::strcmp(filepath, "default") != 0 && !std::filesystem::exists(file)) { mlx::Error("TTF loader: unable to find file '%'", filepath); return;