diff options
author | Anthony Wang | 2022-12-17 23:01:51 -0600 |
---|---|---|
committer | Anthony Wang | 2022-12-17 23:01:51 -0600 |
commit | 40867d899149abefa61451e6b90ea4e1345c00a3 (patch) | |
tree | 32e4c854f1b6f22080da6b8b5ec851711ca8a27a | |
parent | 55b6ce6d80f85f717c56573c051615499e1a03f3 (diff) |
Make music repeat every 3 instead of 6.28
-rw-r--r-- | music.scm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,5 +15,5 @@ )) (define (music t) ( - melody (floor-remainder t 6.28) + melody (floor-remainder t 3) )) |