Index: apps/plugins/doom/rockdoom.c =================================================================== --- apps/plugins/doom/rockdoom.c (Revision 21176) +++ apps/plugins/doom/rockdoom.c (Arbeitskopie) @@ -678,6 +678,9 @@ /* this is the plugin entry point */ enum plugin_status plugin_start(const void* parameter) { + /* Disable all talking before initializing IRAM */ + rb->talk_disable(true); + PLUGIN_IRAM_INIT(rb) (void)parameter; @@ -711,6 +714,7 @@ #ifdef HAVE_ADJUSTABLE_CPU_FREQ rb->cpu_boost(false); #endif + rb->talk_disable(false); if( result == -1 ) return PLUGIN_OK; // Quit was selected else @@ -774,5 +778,6 @@ rb->cpu_boost(false); #endif + rb->talk_disable(false); return PLUGIN_OK; }