Skip to content

Commit

Permalink
rosalina: fix regression in menuReadScreenTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
TuxSH committed Aug 18, 2024
1 parent f0be624 commit ab7e867
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sysmodules/rosalina/source/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ static void menuReadScreenTypes(void)
}
else
{
srvSetBlockingPolicy(true);
srvSetBlockingPolicy(false);

Result res = gspLcdInit();
if (R_SUCCEEDED(res))
Expand All @@ -279,7 +279,7 @@ static void menuReadScreenTypes(void)
gspLcdExit();
}

srvSetBlockingPolicy(false);
srvSetBlockingPolicy(true);
}
}

Expand Down

0 comments on commit ab7e867

Please sign in to comment.