From ae8413747823206f18cc9de677773a43211c0718 Mon Sep 17 00:00:00 2001 From: Viv Date: Fri, 2 Jun 2023 16:33:45 -0400 Subject: [PATCH] `converters.py`: Fix typo (PM -> BPM) --- tja2fumen/converters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tja2fumen/converters.py b/tja2fumen/converters.py index 7f3e6e1..abf3439 100644 --- a/tja2fumen/converters.py +++ b/tja2fumen/converters.py @@ -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