From fefccf808aa7f473592faf41e8aa0fd35589fda0 Mon Sep 17 00:00:00 2001 From: BZLZHH Date: Sun, 10 Aug 2025 23:24:49 +0800 Subject: [PATCH] [Fix] (MG_Util): Fix compiling error. --- MobileGL/MG_Util/Types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MobileGL/MG_Util/Types.h b/MobileGL/MG_Util/Types.h index bc438640..e97a1233 100644 --- a/MobileGL/MG_Util/Types.h +++ b/MobileGL/MG_Util/Types.h @@ -22,7 +22,7 @@ namespace MobileGL { using Uint = Uint32; using Int64 = int64_t; using Uint64 = uint64_t; - using Bool = Bool; + using Bool = bool; using Float = float; using Double = double; using StringView = std::string_view; @@ -236,4 +236,4 @@ namespace MobileGL { Flags operator&(const Bit lhs, const Bit rhs) { return Flags(lhs) & rhs; } -} // namespace MobileGL \ No newline at end of file +} // namespace MobileGL