mirror of
https://github.com/zeldaret/oot
synced 2026-09-02 18:02:49 -04:00
Undefined Symbols in the ASM (#527)
* Darkmeiro decompilation Bg_Gnd_Darkmeiro decompiled, matched, and documented. * give this a shot * fix conflict * one more try * could be useful * whoops * ZAP2 stuff * ZAP why * ZAP again * now with more symbols
This commit is contained in:
+13
-10
@@ -151,16 +151,19 @@ void func_8006390C(Input* input) {
|
||||
gGameInfo->dpadLast = dpad;
|
||||
}
|
||||
|
||||
increment = (CHECK_BTN_ANY(dpad, BTN_DRIGHT)) ? (CHECK_BTN_ALL(input->cur.button, BTN_A | BTN_B) ? 1000
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_A) ? 100
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_B) ? 10
|
||||
: 1)
|
||||
: (CHECK_BTN_ANY(dpad, BTN_DLEFT))
|
||||
? (CHECK_BTN_ALL(input->cur.button, BTN_A | BTN_B) ? -1000
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_A) ? -100
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_B) ? -10
|
||||
: -1)
|
||||
: 0;
|
||||
increment = (CHECK_BTN_ANY(dpad, BTN_DRIGHT))
|
||||
? (CHECK_BTN_ALL(input->cur.button, BTN_A | BTN_B)
|
||||
? 1000
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_A)
|
||||
? 100
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_B) ? 10 : 1)
|
||||
: (CHECK_BTN_ANY(dpad, BTN_DLEFT))
|
||||
? (CHECK_BTN_ALL(input->cur.button, BTN_A | BTN_B)
|
||||
? -1000
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_A)
|
||||
? -100
|
||||
: CHECK_BTN_ALL(input->cur.button, BTN_B) ? -10 : -1)
|
||||
: 0;
|
||||
|
||||
gGameInfo->data[gGameInfo->regCur + regGroup] += increment;
|
||||
if (CHECK_BTN_ANY(dpad, BTN_DUP)) {
|
||||
|
||||
@@ -12,7 +12,7 @@ void BgSpot08Iceblock_Draw(Actor* thisx, GlobalContext* globalCtx);
|
||||
extern UNK_TYPE D_06000DE0;
|
||||
extern UNK_TYPE D_06002BD0;
|
||||
extern UNK_TYPE D_06002FD8;
|
||||
extern UNK_TYPE D_060048DC;
|
||||
extern UNK_TYPE D_06001904;
|
||||
|
||||
/*
|
||||
const ActorInit Bg_Spot08_Iceblock_InitVars = {
|
||||
|
||||
@@ -22,12 +22,12 @@ extern UNK_TYPE D_06016CD8;
|
||||
extern UNK_TYPE D_06016F88;
|
||||
extern UNK_TYPE D_06017028;
|
||||
extern UNK_TYPE D_06017170;
|
||||
extern UNK_TYPE D_0601D9A0;
|
||||
extern UNK_TYPE D_0601E8D0;
|
||||
extern UNK_TYPE D_0601EE60;
|
||||
extern UNK_TYPE D_06000F30;
|
||||
extern UNK_TYPE D_0601EB14;
|
||||
extern UNK_TYPE D_0601EB40;
|
||||
extern UNK_TYPE D_0601EE34;
|
||||
extern UNK_TYPE D_0601F1D0;
|
||||
extern UNK_TYPE D_06000900;
|
||||
|
||||
/*
|
||||
const ActorInit Demo_Ik_InitVars = {
|
||||
|
||||
@@ -57,7 +57,9 @@ Vec3f D_80B16E7C = {
|
||||
};
|
||||
|
||||
UNK_TYPE D_80B16E88[] = {
|
||||
0x06007F80, 0x06006EC0, 0x060072C0,
|
||||
0x06007F80,
|
||||
0x06006EC0,
|
||||
0x060072C0,
|
||||
};
|
||||
|
||||
extern AnimationHeader D_060017E8;
|
||||
|
||||
@@ -46,7 +46,7 @@ extern UNK_TYPE D_060113D0;
|
||||
extern UNK_TYPE D_06011410;
|
||||
extern UNK_TYPE D_06012160;
|
||||
extern UNK_TYPE D_060121F0;
|
||||
extern UNK_TYPE D_060122E0;
|
||||
extern UNK_TYPE D_06011070;
|
||||
extern UNK_TYPE D_06013330;
|
||||
extern UNK_TYPE D_060133B0;
|
||||
extern UNK_TYPE D_06013590;
|
||||
|
||||
Reference in New Issue
Block a user