File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
blue-ui-core/src/main/java/blue/ui/core/render Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -178,16 +178,10 @@ protected synchronized CsdRenderResult generateCSDForBlueLiveImpl(
178178
179179 score .append ("</CsoundSynthesizer>" );
180180
181- // Tempo tempo = data.getScore().getTempo();
182- TempoMap tempoMap = null ;
183-
184- // if (tempo.isEnabled()) {
185- // tempoMapper = CSDRender.getTempoMap(tempo);
186- // } else {
187- // tempoMapper = CSDRender.getTempoMap(globalSco);
188- // }
181+ // BlueLive does not use tempo mapping — tempoMap is null.
182+ // Tempo-aware rendering is handled by generateCSDImpl.
189183 CsdRenderResult renderResult
190- = new CsdRenderResult (score .toString (), tempoMap ,
184+ = new CsdRenderResult (score .toString (), null ,
191185 originalParameters , stringChannels );
192186
193187 return renderResult ;
You can’t perform that action at this time.
0 commit comments