diff --git a/src/MaaCore/Utils/ExceptionStacktrace.hpp b/src/MaaCore/Utils/ExceptionStacktrace.hpp index 5fa077f461..89af089189 100644 --- a/src/MaaCore/Utils/ExceptionStacktrace.hpp +++ b/src/MaaCore/Utils/ExceptionStacktrace.hpp @@ -52,7 +52,7 @@ public: const struct mach_header* header = _dyld_get_image_header(0); return reinterpret_cast(header); #else // Linux and other Unix-like systems - // 通过当前函数地址查找所属模块基址 + // 通过当前函数地址查找所属模块基址 Dl_info info; if (dladdr(reinterpret_cast(&get_base_address), &info)) { return reinterpret_cast(info.dli_fbase);