Fix Dreamcast V2 EXP patch sentinel load

This commit is contained in:
2026-05-16 02:43:00 -04:00
parent e4a758284c
commit c043bbc909
2 changed files with 6 additions and 4 deletions
@@ -20,8 +20,9 @@ start:
mov.l r8, [r0] mov.l r8, [r0]
# r9 = sentinel at index 2: active_table + (2 * 0x24) # r9 = sentinel at index 2: active_table + (2 * 0x24)
mov.w r9, [r8 + 0x48] mov r12, r8
add r12, 0x48
mov.w r9, [r12]
mova r0, [factor_table] mova r0, [factor_table]
mov r10, r0 mov r10, r0
mov r11, 8 mov r11, 8
+3 -2
View File
@@ -26,8 +26,9 @@ start:
mov.l r8, [r0] mov.l r8, [r0]
# r9 = sentinel at index 2: active_table + (2 * 0x24) # r9 = sentinel at index 2: active_table + (2 * 0x24)
mov.w r9, [r8 + 0x48] mov r12, r8
add r12, 0x48
mov.w r9, [r12]
mova r0, [factor_table] mova r0, [factor_table]
mov r10, r0 mov r10, r0
mov r11, 8 mov r11, 8