From 7c2380ccce570df2de5277597d80c106331a2ab9 Mon Sep 17 00:00:00 2001 From: BZLZHH Date: Thu, 1 Jan 2026 00:27:05 +0800 Subject: [PATCH] [Chore] (MG_Util): Always skip patch string when == 0 for Version. --- MobileGL/MG_Util/Types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobileGL/MG_Util/Types.h b/MobileGL/MG_Util/Types.h index 82865d51..ddfb38d0 100644 --- a/MobileGL/MG_Util/Types.h +++ b/MobileGL/MG_Util/Types.h @@ -233,7 +233,7 @@ namespace MobileGL { Bool shouldShowPatch = true; if (fmt.autoPatch) { - shouldShowPatch = (Patch != 0) || (Type != VersionType::Release); + shouldShowPatch = (Patch != 0); } if (shouldShowPatch) {