Skip to content

Commit

Permalink
Correct the mario_theme example for SPU
Browse files Browse the repository at this point in the history
  • Loading branch information
DerelictDrone committed Dec 14, 2023
1 parent 1d62172 commit 2e51ed1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions data/spuchip/examples/mario_theme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ tracklen = strlen(trackA);
void main()
{
// Tempo
if ((i > 120) && (i <= 230))
if ((i > 120) && (i <= 230)) {
tempo( 1000 );
else
}
else {
tempo( 864 );
}

// Track A
note = 2;
Expand Down

0 comments on commit 2e51ed1

Please sign in to comment.