From 0825671ccb9b0fdcffd48e164328dc92faad5957 Mon Sep 17 00:00:00 2001 From: Darren Thompson Date: Sat, 2 Aug 2025 12:38:54 -0400 Subject: [PATCH] Correctly identified edit ID vs game ID for song --- bemani/utils/read.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bemani/utils/read.py b/bemani/utils/read.py index da1bd11..44dda3d 100644 --- a/bemani/utils/read.py +++ b/bemani/utils/read.py @@ -4758,7 +4758,7 @@ class ImportDDR(ImportBase): + "xxxx" # field13 + "H" # bpm_min 0 + "H" # bpm_max 1 - + "I" # id 2 + + "I" # edit id 2 + "B" # single difficult + basic 3 + "B" # single challenge + expert 4 + "B" # single beginner 5 @@ -4768,9 +4768,10 @@ class ImportDDR(ImportBase): + "xxxx" # idk + "xx" # idk + ("HHHHHHHHH" * 5) - + "xxxxxx" # idk + + "xx" + + "I" # song_id 53 ), - id_offset=2, + id_offset=53, edit_offset=2, bpm_min_offset=0, bpm_max_offset=1,