1
0
mirror of synced 2025-01-24 15:12:19 +01:00

converters.py: Fix typo (PM -> BPM)

This commit is contained in:
Viv 2023-06-02 16:33:45 -04:00
parent abd0af5f57
commit ae84137478

View File

@ -68,7 +68,7 @@ def preprocessTJAMeasures(tja):
for data in combined:
if data['type'] == 'bpm':
currentBPM = float(data['value'])
# Case 1: BPM change at the start of a measure; just change PM
# Case 1: BPM change at the start of a measure; just change BPM
if data['pos'] == 0:
measure_cur['bpm'] = currentBPM
# Case 2: BPM change mid-measure, so start a new sub-measure