* Prog 1 - Sound Effects
Le listing, comme publié dans Amstrad Computer User, contient un bug. La commande ENV dans la ligne 240 devrait être ENT :
AVANT :
240 ENV 1,1,-120,1,40,1,3
APRES :
240 ENT 1,1,-120,1,40,1,3
* Program 2 - Sea, Surf and Seagulls
Le listing, comme publié dans Amstrad Computer User, contient deux bugs.
Le mot RNS dans la ligne 280 devrait être RND :
AVANT :
280 peak=INT(RNS*200+1)
APRES :
280 peak=INT(RND*200+1)
Une espace est manquant après la commande SOUND dans la ligne 360 :
AVANT :