diff --git a/source/main.c b/source/main.c index eb97555..8d4c8b9 100644 --- a/source/main.c +++ b/source/main.c @@ -683,6 +683,14 @@ int main(void) case MODE_SPLASHES: draw_install(INSTALL_SPLASH); splash_install(*current_entry); + for(int i = 0; i < current_list->entries_count; i++) + { + Entry_s * splash = ¤t_list->entries[i]; + if(splash == current_entry) + splash->installed = true; + else + splash->installed = false; + } break; default: break;