[Chore] (MG_Util): Always skip patch string when == 0 for Version.

This commit is contained in:
BZLZHH
2026-01-01 00:27:11 +08:00
parent adc927668b
commit 7c2380ccce
+1 -1
View File
@@ -233,7 +233,7 @@ namespace MobileGL {
Bool shouldShowPatch = true; Bool shouldShowPatch = true;
if (fmt.autoPatch) { if (fmt.autoPatch) {
shouldShowPatch = (Patch != 0) || (Type != VersionType::Release); shouldShowPatch = (Patch != 0);
} }
if (shouldShowPatch) { if (shouldShowPatch) {