From 148031782fcdd00db3ca116cf5c6d2576ba6830f 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 fb4e50e..2e20636 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);