mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 02:07:02 +03:00
Disable inlining
JSRF appears to have it disabled despite other optimizations. Even if it was enabled, anyways, we'd still be decompiling the post-inlining functions and wouldn't want any further inlining to take place (we want the compiler to compile each function the way we write it).
This commit is contained in:
parent
08abfd3913
commit
1b08163c08
2 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ all: src/JSRF/Jet2.obj
|
|||
# Simple inference rule for producing object files
|
||||
.SUFFIXES: .cpp .obj
|
||||
.cpp.obj:
|
||||
CL.EXE /nologo /Wall /TP /W3 /O2 /MT /GX /Fo$@ /c $<
|
||||
CL.EXE /nologo /Wall /TP /W3 /O2 /Ob0 /MT /GX /Fo$@ /c $<
|
||||
|
||||
# Header files used for each object
|
||||
src/JSRF/Jet2.obj: src/JSRF/Core.hpp src/XDK/D3D.hpp src/XDK/Win32.hpp\
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ A matching decompilation of the Xbox game Jet Set Radio Future.
|
|||
|
||||
## Progress
|
||||
- Delinking progress: 0.52% (13263 out of 2574172 bytes in XBE address space)
|
||||
- Decompilation progress: 26.5% (26 out of the 98 functions delinked so far)
|
||||
- Decompilation progress: 29.6% (29 out of the 98 functions delinked so far)
|
||||
|
||||
## Roadmap
|
||||
The approach of this decompilation is to:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue