Skip to content

Commit

Permalink
fix for Recovery launching with gameboot disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
krazynez committed Jun 22, 2024
1 parent 4849d51 commit 2669407
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion extras/menus/arkMenu/src/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,13 @@ void Entry::execute(){

void Entry::gameBoot(){

if (common::getConf()->fast_gameboot)
//if (common::getConf()->fast_gameboot && name != "Recovery Menu")
if (common::getConf()->fast_gameboot) {
MusicPlayer::fullStop();
SystemMgr::pauseDraw();
sceDisplaySetHoldMode(1);
return;
}

MusicPlayer::fullStop();

Expand Down

0 comments on commit 2669407

Please sign in to comment.