mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 10:17:03 +03:00
Correct .data section ranges in delinked objects
The change in the previous commit was a silly case of not thinking things through, not realizing that the .data range moved to Core.obj was nowhere near the beginning of the section as it should be. g_game has been moved back into Jet2.obj (time will tell if this is correct) and a missed data strucure at the beginning of .data (where it ought to be) now makes up Core.obj's .data portion.
This commit is contained in:
parent
9e638e0ec2
commit
22a8c350eb
4 changed files with 7 additions and 7 deletions
|
|
@ -5,7 +5,3 @@ Game and GameObj classes that form the foundation of the JSRF game code.
|
|||
#pragma bss_seg(".data")
|
||||
|
||||
#include "Core.hpp"
|
||||
|
||||
|
||||
// Address: 0x0022FCE0
|
||||
Game * g_game;
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ Main function.
|
|||
#include "Core.hpp"
|
||||
|
||||
|
||||
// Address: 0x0022FCE0
|
||||
Game * g_game;
|
||||
|
||||
|
||||
// Address: 0x0006F9E0
|
||||
// Matching: yes
|
||||
void main(void) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue