aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2022-12-17 23:01:51 -0600
committerAnthony Wang2022-12-17 23:01:51 -0600
commit40867d899149abefa61451e6b90ea4e1345c00a3 (patch)
tree32e4c854f1b6f22080da6b8b5ec851711ca8a27a
parent55b6ce6d80f85f717c56573c051615499e1a03f3 (diff)
Make music repeat every 3 instead of 6.28
-rw-r--r--music.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/music.scm b/music.scm
index 1098ab3..0c35ee1 100644
--- a/music.scm
+++ b/music.scm
@@ -15,5 +15,5 @@
))
(define (music t) (
- melody (floor-remainder t 6.28)
+ melody (floor-remainder t 3)
))