From 562ff75c5aba2be4c053cf5bc80b6396b3e5ae32 Mon Sep 17 00:00:00 2001 From: uye <99072975+ABA2396@users.noreply.github.com> Date: Fri, 12 Jun 2026 00:26:59 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E7=AE=80=E5=8C=96=20external=5Frender?= =?UTF-8?q?er=5Fipc=20=E5=8A=A0=E8=BD=BD=E6=88=90=E5=8A=9F=E7=9A=84?= =?UTF-8?q?=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MaaCore/Controller/MumuExtras.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MaaCore/Controller/MumuExtras.cpp b/src/MaaCore/Controller/MumuExtras.cpp index 835e953095..b954a3d0ef 100644 --- a/src/MaaCore/Controller/MumuExtras.cpp +++ b/src/MaaCore/Controller/MumuExtras.cpp @@ -112,7 +112,7 @@ bool MumuExtras::load_mumu_library() for (const auto& rel_path : kCandidateRelativePaths) { auto lib_path = mumu_path_ / rel_path; if (load_library(lib_path)) { - LogInfo << "Successfully loaded MuMu external renderer library from: " << lib_path.string(); + LogInfo << "Successfully loaded MuMu external renderer library from: " << lib_path; loaded = true; break; } @@ -121,7 +121,7 @@ bool MumuExtras::load_mumu_library() if (!loaded) { LogError << "Failed to load library from all candidate paths"; for (const auto& rel_path : kCandidateRelativePaths) { - LogError << " tried: " << (mumu_path_ / rel_path).string(); + LogError << " tried: " << (mumu_path_ / rel_path); } return false; }