mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-04-26 01:45:17 -05:00
Correctly identified edit ID vs game ID for song
This commit is contained in:
parent
4723795fb6
commit
0825671ccb
|
|
@ -4758,7 +4758,7 @@ class ImportDDR(ImportBase):
|
||||||
+ "xxxx" # field13
|
+ "xxxx" # field13
|
||||||
+ "H" # bpm_min 0
|
+ "H" # bpm_min 0
|
||||||
+ "H" # bpm_max 1
|
+ "H" # bpm_max 1
|
||||||
+ "I" # id 2
|
+ "I" # edit id 2
|
||||||
+ "B" # single difficult + basic 3
|
+ "B" # single difficult + basic 3
|
||||||
+ "B" # single challenge + expert 4
|
+ "B" # single challenge + expert 4
|
||||||
+ "B" # single beginner 5
|
+ "B" # single beginner 5
|
||||||
|
|
@ -4768,9 +4768,10 @@ class ImportDDR(ImportBase):
|
||||||
+ "xxxx" # idk
|
+ "xxxx" # idk
|
||||||
+ "xx" # idk
|
+ "xx" # idk
|
||||||
+ ("HHHHHHHHH" * 5)
|
+ ("HHHHHHHHH" * 5)
|
||||||
+ "xxxxxx" # idk
|
+ "xx"
|
||||||
|
+ "I" # song_id 53
|
||||||
),
|
),
|
||||||
id_offset=2,
|
id_offset=53,
|
||||||
edit_offset=2,
|
edit_offset=2,
|
||||||
bpm_min_offset=0,
|
bpm_min_offset=0,
|
||||||
bpm_max_offset=1,
|
bpm_max_offset=1,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user