From b5f0076d46d4ed66d6bc6756273ecb7bb6a6d33d Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 11 Jul 2023 11:37:30 +1000 Subject: [PATCH] Fix 'some resources need to be downloaded' menu mistakenly always appearing (Thanks TomCube2) --- src/Resources.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Resources.c b/src/Resources.c index 8cc0cdcc4..d8b31e286 100644 --- a/src/Resources.c +++ b/src/Resources.c @@ -969,6 +969,8 @@ static void MCCTextures_CheckExistence(void) { static void MCCTextures_CountMissing(void) { int i; + if (allZipEntriesExist) return; + numDefaultZipSources = Array_Elems(defaultZipSources); /* old gold texture only needed in 0.0.23 and earlier */ if (Game_Version.Version > VERSION_0023) numDefaultZipSources--;