From e19918e330bc42f1d58e2460fbe1fbfd73649408 Mon Sep 17 00:00:00 2001 From: Maschell Date: Mon, 17 Jan 2022 01:29:01 +0100 Subject: [PATCH] Increase wait time for USB Storage --- source/StorageUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/StorageUtils.cpp b/source/StorageUtils.cpp index e2dc878..b2e8c1e 100644 --- a/source/StorageUtils.cpp +++ b/source/StorageUtils.cpp @@ -106,7 +106,7 @@ void initExternalStorage() { int tries = 0; bool found = false; - while (tries < 600) { + while (tries < 1200) { // Wait up to 20 seconds, like the Wii U Menu int32_t numItems = nn::spm::GetStorageList(items, 0x20); DEBUG_FUNCTION_LINE("Number of items: %d", numItems);