summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index b8897c95ee..2be6e10308 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -847,7 +847,10 @@ int plugin_load(const char* plugin, const void* parameter)
847 plugin_buffer_handle = core_free(plugin_buffer_handle); 847 plugin_buffer_handle = core_free(plugin_buffer_handle);
848 } 848 }
849 849
850 splash(0, ID2P(LANG_WAIT)); 850#ifdef HAVE_DISK_STORAGE
851 if (!storage_disk_is_active())
852 splash(0, ID2P(LANG_WAIT));
853#endif
851 strcpy(current_plugin, plugin); 854 strcpy(current_plugin, plugin);
852 855
853 current_plugin_handle = lc_open(plugin, pluginbuf, PLUGIN_BUFFER_SIZE); 856 current_plugin_handle = lc_open(plugin, pluginbuf, PLUGIN_BUFFER_SIZE);