Skip to content

Commit

Permalink
Minor fix for disk load error
Browse files Browse the repository at this point in the history
Don't bother to load boxart after.
  • Loading branch information
networkfusion committed Nov 5, 2024
1 parent 0d2deaa commit 17c2145
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/menu/views/load_disk.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ void view_load_disk_init (menu_t *menu) {
disk_err_t err = disk_info_load(menu->load.disk_path, &menu->load.disk_info);
if (err != DISK_OK) {
menu_show_error(menu, convert_error_message(err));
return;
}

boxart = component_boxart_init(menu->storage_prefix, menu->load.disk_info.id, IMAGE_BOXART_FRONT);
Expand Down

0 comments on commit 17c2145

Please sign in to comment.