Skip to content

Commit

Permalink
for the file name, reaper-play now uses the title instead of merely t…
Browse files Browse the repository at this point in the history
…he id
  • Loading branch information
Michael Edwards committed Feb 20, 2024
1 parent c9b75b2 commit bd8c1f2
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/slippery-chicken.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
;;;
;;; Creation date: March 19th 2001
;;;
;;; $$ Last modified: 10:49:29 Mon Feb 19 2024 CET
;;; $$ Last modified: 10:29:16 Tue Feb 20 2024 CET
;;;
;;; ****
;;; Licence: Copyright (c) 2010 Michael Edwards
Expand Down Expand Up @@ -5619,7 +5619,11 @@ seq-num 5, VN, replacing G3 with B6
(format nil
"~a~a~{-~a~}~{-~a~}~{-~a~}~{-to-~a~}-seq~a-~a~a.rpp"
output-name-uniquifier
(string-trim "+" (id sc))
;; MDE Tue Feb 20 10:26:55 2024, Heidhausen -- now
;; use the title, if it was explicitly given
(if (string= (title sc) "slippery chicken")
(string-trim "+" (id sc))
(filename-from-title (title sc)))
(if (listp section) section (list section))
players
(if (listp sound-file-palette-ref)
Expand Down Expand Up @@ -6568,7 +6572,7 @@ rhythm::validate-mark: no CMN mark for BEG-PH (but adding anyway).
(check-slurs-aux sc "phrases" #'begin-phrase-p #'end-phrase-p fix warn))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; MDE Fri Dec 3 10:39:31 2021, Heidhausen -- also check for slurs over
;;; MDE Fri Dec 3 10:39:31 2021, Heidhausen -- also check for slurs over
;;; rests and try to fix, if desired
(defmethod check-slurs-aux ((sc slippery-chicken) name test-beg test-end
&optional fix (warn t))
Expand Down

0 comments on commit bd8c1f2

Please sign in to comment.