Skip to content

Commit f2e4636

Browse files
committed
fix(zaparoo): let UI loop run during alt launcher so notices clear
The `!alt_launcher_active()` gate around HandleUI/OsdUpdate stopped the MENU_INFO timer from ever expiring while the launcher was up, so the resolution-change overlay and unknown-INI-key warning stuck on screen permanently. The gate's CPU win was negligible (the coroutine yields each iteration anyway) and MENU/F12 are already intercepted upstream, so just drop it.
1 parent 1b6bc7b commit f2e4636

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

scheduler.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,8 @@ static void scheduler_co_ui(void)
4747
{
4848
{
4949
SPIKE_SCOPE("co_ui", 1000);
50-
if (!alt_launcher_active())
51-
{
52-
HandleUI();
53-
OsdUpdate();
54-
}
50+
HandleUI();
51+
OsdUpdate();
5552
}
5653

5754
scheduler_yield();

0 commit comments

Comments
 (0)