Skip to content

Commit

Permalink
Make sure to pop when continuing
Browse files Browse the repository at this point in the history
  • Loading branch information
OFFTKP committed Aug 12, 2024
1 parent 5bac217 commit 85ff70c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -5083,7 +5083,10 @@ void se_load_rom_overlay(bool visible){
bool save_exists = sb_file_exists(save_file_path);
if(save_exists)reduce_width=85;
#endif
if(!se_string_contains_string_case_insensitive(info->path,gui_state.search_buffer))continue;
if(!se_string_contains_string_case_insensitive(info->path,gui_state.search_buffer)){
igPopID();
continue;
}
if(se_selectable_with_box(file_name,se_replace_fake_path(info->path),ext_upper,false,reduce_width+cross_width)){
se_load_rom(info->path);
}
Expand Down

0 comments on commit 85ff70c

Please sign in to comment.