Skip to content

Commit

Permalink
Latest Release RM0423-1246-0.101.1-bca8534 on PATREON - GAME MODE FIX
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueMaster committed Apr 24, 2024
1 parent cd3b8ae commit aa3be33
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions applications/services/desktop/scenes/desktop_scene_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@ static inline bool desktop_scene_main_check_none(const char* str) {
}

static void desktop_scene_main_open_app_or_profile(Desktop* desktop, const char* path) {
if(loader_start_with_gui_error(desktop->loader, path, NULL) != LoaderStatusOk) {
loader_start_detached_with_gui_error(desktop->loader, PASSPORT_APP, NULL);
if(strlen(path) > 0) {
loader_start_detached_with_gui_error(desktop->loader, path, NULL);
} else {
loader_start_detached_with_gui_error(desktop->loader, "Passport", NULL);
}
}

Expand Down

0 comments on commit aa3be33

Please sign in to comment.