forked from kyx0r/FA-Binary-Patches
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable unused console commands (#78)
Enable unused console commands
- Loading branch information
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// these are the locations of the names of fully registered commands - they're null, | ||
// so they don't work until we fill in the name | ||
asm(R"( | ||
.section h0; .set h0,0xE1DF0C; .string "ren_Steering" | ||
.section h1; .set h1,0xE210E8; .string "dbg_Ballistics" | ||
# just barely doesn't fit, slide up one into the empty description and update pointer | ||
.section h2; .set h2,0xF59C88; .word 0xE23900 - 1 | ||
.section h3; .set h3,0xE23900 - 1; .string "dbg_EfxBeams" | ||
#.section h4; .set h4,0xE23EC4; .string "dbg_Emitter" # actually unused by the engine | ||
.section h5; .set h5,0xE26858; .string "dbg_Trail" | ||
.section h6; .set h6,0xE2698C; .string "dbg_CollisionBeam" | ||
.section h7; .set h7,0xE294E8; .string "dbg_Projectile" | ||
)"); |