This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#10271 - automatically disable voice upon rockdoom startup
Attached to Project:
Rockbox
Opened by Christian Beier (dontmind) - Wednesday, 03 June 2009, 15:29 GMT+2
Last edited by Karl Kurbjun (kkurbjun) - Friday, 18 December 2009, 05:26 GMT+2
Opened by Christian Beier (dontmind) - Wednesday, 03 June 2009, 15:29 GMT+2
Last edited by Karl Kurbjun (kkurbjun) - Friday, 18 December 2009, 05:26 GMT+2
|
Detailshi there,
attached is a simple fix to disable voice upon doom startup and re-enable it upon quitting rockdoom, in the fashion other plugins do it (e.g. mpegplayer). tested succesfully on my ipod 5.5g. |
This task depends upon
Closed by Karl Kurbjun (kkurbjun)
Friday, 18 December 2009, 05:26 GMT+2
Reason for closing: Accepted
Additional comments about closing: Thanks!
Friday, 18 December 2009, 05:26 GMT+2
Reason for closing: Accepted
Additional comments about closing: Thanks!
+ {
+ rb->talk_disable(false);
return PLUGIN_OK; // Quit was selected
+ }
else
+ {
+ rb->talk_disable(false);
return PLUGIN_ERROR; // Missing base wads
+ }
}
You can just add rb->talk_disable(false); before if( result == -1 )
it's a simple fix for a simple issue...