Symbol rename

This commit is contained in:
Ethan Roseman 2020-05-12 00:56:46 -04:00
parent 9fe042ff75
commit 80f3931bff
2 changed files with 17 additions and 21 deletions

View File

@ -1,29 +1,25 @@
typedef struct
{
int unk0;
int unk4;
int unk8;
int unkC;
typedef struct {
int unk0;
int unk4;
int unk8;
int unkC;
} struct_80147230;
extern struct_80147230 unk1;
extern struct_80147230 unk2;
extern struct_80147230 D_8014F140;
extern struct_80147230 D_8015C7C0;
void func_80147230(void)
{
unk2 = unk1;
void func_80147230(void) {
D_8015C7C0 = D_8014F140;
}
void __attribute__((naked)) UpdateMusicPlayers(void)
{
__asm__(
void __attribute__((naked)) UpdateMusicPlayers(void) {
__asm__(
".include \"asm/code_dd930_len_1c0/UpdateMusicPlayers.s\"\n"
);
);
}
void __attribute__((naked)) play_ambient_sounds(void)
{
__asm__(
void __attribute__((naked)) play_ambient_sounds(void) {
__asm__(
".include \"asm/code_dd930_len_1c0/play_ambient_sounds.s\"\n"
);
);
}

View File

@ -12,5 +12,5 @@ func_80240AA8 = 0x80240AA8;
func_80241190 = 0x80241190;
func_802BD7DC = 0x802BD7DC;
func_802BE070 = 0x802BE070;
unk1 = 0x8014F140;
unk2 = 0x8015C7C0;
D_8014F140 = 0x8014F140;
D_8015C7C0 = 0x8015C7C0;