From c8ade8618be406377b036ae21169d78534ac8df5 Mon Sep 17 00:00:00 2001 From: scgm0 <2682963017@qq.com> Date: Tue, 1 Apr 2025 06:45:33 +0800 Subject: [PATCH] Fix Windows Mono build --- modules/mono/utils/path_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mono/utils/path_utils.cpp b/modules/mono/utils/path_utils.cpp index fc61884f59d..9c68efe5275 100644 --- a/modules/mono/utils/path_utils.cpp +++ b/modules/mono/utils/path_utils.cpp @@ -92,7 +92,7 @@ String cwd() { return "."; } - String result = String::utf16((buffer.ptr()); + String result = String::utf16(buffer.ptr()); if (result.is_empty()) { return "."; }