|
From: <sba...@us...> - 2023-09-19 03:51:00
|
This is an automated email from the git hooks/post-receive-user script. sbaldovi pushed a commit to branch patches-142-currah-uspeech in repository fuse. View the commit online: https://sourceforge.net/p/fuse-emulator/fuse/ci/bd36f290be5581a1392ce3daa1740ac3a8a152ed/ commit bd36f290be5581a1392ce3daa1740ac3a8a152ed Author: Sergio Baldoví <ser...@gm...> AuthorDate: Tue Sep 19 05:36:24 2023 +0200 Limit uSpeech to 48K machines (thanks, Vic Chwe) --- machines/machines_periph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/machines_periph.c b/machines/machines_periph.c index 2533c409..3223b36e 100644 --- a/machines/machines_periph.c +++ b/machines/machines_periph.c @@ -205,7 +205,6 @@ base_peripherals_48_128( void ) periph_set_present( PERIPH_TYPE_PLUSD, PERIPH_PRESENT_OPTIONAL ); periph_set_present( PERIPH_TYPE_SPECDRUM, PERIPH_PRESENT_OPTIONAL ); periph_set_present( PERIPH_TYPE_USOURCE, PERIPH_PRESENT_OPTIONAL ); - periph_set_present( PERIPH_TYPE_USPEECH, PERIPH_PRESENT_OPTIONAL ); } /* The set of peripherals available on the 48K and similar machines */ @@ -220,6 +219,7 @@ machines_periph_48( void ) periph_set_present( PERIPH_TYPE_ZXPRINTER, PERIPH_PRESENT_OPTIONAL ); periph_set_present( PERIPH_TYPE_DIDAKTIK80, PERIPH_PRESENT_OPTIONAL ); periph_set_present( PERIPH_TYPE_DISCIPLE, PERIPH_PRESENT_OPTIONAL ); + periph_set_present( PERIPH_TYPE_USPEECH, PERIPH_PRESENT_OPTIONAL ); } /* The set of peripherals available on the 128K and similar machines */ |