Skip to content

Commit

Permalink
Fix paths to m446dll files
Browse files Browse the repository at this point in the history
  • Loading branch information
gamemasterplc committed May 24, 2024
1 parent dc71ba3 commit 5305f96
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions config/GMPE01_00/rels/m446dll/splits.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,49 +9,49 @@ Sections:
REL/executor.c:
.text start:0x00000000 end:0x000000A0

REL/m446dll/main.c:
REL/m446Dll/main.c:
.text start:0x000000A0 end:0x00001C64
.rodata start:0x00000000 end:0x00000058
.data start:0x00000000 end:0x00000150
.bss start:0x00000000 end:0x00000018

REL/m446dll/card.c:
REL/m446Dll/card.c:
.text start:0x00001C64 end:0x00003064
.rodata start:0x00000058 end:0x000000D0
.data start:0x00000150 end:0x000001A8
.bss start:0x00000018 end:0x00000020

REL/m446dll/deck.c:
REL/m446Dll/deck.c:
.text start:0x00003064 end:0x00003924
.rodata start:0x000000D0 end:0x00000138
.data start:0x000001A8 end:0x000001E8
.bss start:0x00000020 end:0x00000028

REL/m446dll/table.c:
REL/m446Dll/table.c:
.text start:0x00003924 end:0x0000480C
.rodata start:0x00000138 end:0x00000170
.data start:0x000001E8 end:0x00000228
.bss start:0x00000028 end:0x00000030

REL/m446dll/player.c:
REL/m446Dll/player.c:
.text start:0x0000480C end:0x00006778
.rodata start:0x00000170 end:0x00000208
.data start:0x00000228 end:0x00000370
.bss start:0x00000030 end:0x00000038

REL/m446dll/camera.c:
REL/m446Dll/camera.c:
.text start:0x00006778 end:0x000072E0
.rodata start:0x00000208 end:0x00000268
.data start:0x00000370 end:0x000003C8
.bss start:0x00000038 end:0x00000098

REL/m446dll/cursor.c:
REL/m446Dll/cursor.c:
.text start:0x000072E0 end:0x00007BF0
.rodata start:0x00000268 end:0x000002A0
.data start:0x000003C8 end:0x00000410
.bss start:0x00000098 end:0x000000A0

REL/m446dll/stage.c:
REL/m446Dll/stage.c:
.text start:0x00007BF0 end:0x00008618
.rodata start:0x000002A0 end:0x000002D8
.data start:0x00000410 end:0x000004F6
Expand Down
16 changes: 8 additions & 8 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1188,14 +1188,14 @@ def Rel(lib_name, objects):
"m446dll",
objects={
Object(Matching, "REL/executor.c"),
Object(NonMatching, "REL/m446dll/main.c"),
Object(Matching, "REL/m446dll/card.c"),
Object(Matching, "REL/m446dll/deck.c"),
Object(Matching, "REL/m446dll/table.c"),
Object(Matching, "REL/m446dll/player.c"),
Object(NonMatching, "REL/m446dll/camera.c"),
Object(NonMatching, "REL/m446dll/cursor.c"),
Object(NonMatching, "REL/m446dll/stage.c"),
Object(NonMatching, "REL/m446Dll/main.c"),
Object(Matching, "REL/m446Dll/card.c"),
Object(Matching, "REL/m446Dll/deck.c"),
Object(Matching, "REL/m446Dll/table.c"),
Object(Matching, "REL/m446Dll/player.c"),
Object(NonMatching, "REL/m446Dll/camera.c"),
Object(NonMatching, "REL/m446Dll/cursor.c"),
Object(NonMatching, "REL/m446Dll/stage.c"),
},
),
Rel(
Expand Down

0 comments on commit 5305f96

Please sign in to comment.