1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

increase delay in sound test

This commit is contained in:
Mariano Dominguez 2023-01-06 11:23:33 -08:00
parent 196962adac
commit bf9fb6dcdb

View File

@ -14,7 +14,7 @@ int main(void)
int i=0;
printf("playing sound \n");
sound(1,121,10,15);
for(i=0;i<90;i++);
for(i=0;i<9000;i++);
sound(1,0,0,0);
return 0;
}