Properly update installed splashes

This commit is contained in:
2018-07-23 15:09:16 +03:00
parent c40696e982
commit 0d1ab5ed95

View File

@@ -683,6 +683,14 @@ int main(void)
case MODE_SPLASHES: case MODE_SPLASHES:
draw_install(INSTALL_SPLASH); draw_install(INSTALL_SPLASH);
splash_install(*current_entry); splash_install(*current_entry);
for(int i = 0; i < current_list->entries_count; i++)
{
Entry_s * splash = &current_list->entries[i];
if(splash == current_entry)
splash->installed = true;
else
splash->installed = false;
}
break; break;
default: default:
break; break;