From 1966b4bdf341f873d98a10b1f22ba007eb4e9a4a Mon Sep 17 00:00:00 2001 From: EZ Date: Sun, 16 Aug 2026 16:12:43 -0700 Subject: [PATCH] Fix Timeout on Overworld Entry Increased timeout when looking for overworld to account for longer loading time --- .../PokemonPokopia/Programs/PokemonPokopia_PCNavigation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SerialPrograms/Source/PokemonPokopia/Programs/PokemonPokopia_PCNavigation.cpp b/SerialPrograms/Source/PokemonPokopia/Programs/PokemonPokopia_PCNavigation.cpp index 65ef3cc126..395b96a2b3 100644 --- a/SerialPrograms/Source/PokemonPokopia/Programs/PokemonPokopia_PCNavigation.cpp +++ b/SerialPrograms/Source/PokemonPokopia/Programs/PokemonPokopia_PCNavigation.cpp @@ -390,7 +390,7 @@ void mash_until_overworld(ConsoleHandle& console, ProControllerContext& context) int ret = run_until( console, context, [&](ProControllerContext& context){ - pbf_mash_button(context, BUTTON_B, 30s); + pbf_mash_button(context, BUTTON_B, 120s); }, {overworld_watcher} );