mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Revert "plugin load / tagtree retrieval: eliminate storage_disk_is_active check"
ata_disk_is_active() behavior with SSDs has reverted, so we want to keep this.
This reverts commit ef19fa4408
.
Change-Id: I29f08617285747c17a52352bd7bba4069e71cde6
This commit is contained in:
parent
e829ea9a5e
commit
b30f05badc
2 changed files with 16 additions and 2 deletions
|
@ -882,6 +882,10 @@ int plugin_load(const char* plugin, const void* parameter)
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef HAVE_DISK_STORAGE
|
||||
if (!storage_disk_is_active())
|
||||
splash(0, ID2P(LANG_WAIT));
|
||||
#endif
|
||||
strcpy(current_plugin, plugin);
|
||||
current_plugin_handle = lc_open(plugin, pluginbuf, PLUGIN_BUFFER_SIZE);
|
||||
if (current_plugin_handle == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue