mirror of
https://github.com/pret/pokefirered.git
synced 2026-06-02 22:04:27 -05:00
split unk_8159F40
This commit is contained in:
parent
e08f10fd41
commit
425c733cea
|
|
@ -258,7 +258,8 @@ SECTIONS {
|
|||
asm/dodrio_berry_picking.o(.text);
|
||||
asm/battle_controller_pokedude.o(.text);
|
||||
src/unk_8159F40.o(.text);
|
||||
asm/unk_8159F40.o(.text);
|
||||
src/dodrio_berry_picking_2.o(.text);
|
||||
asm/dodrio_berry_picking_2.o(.text);
|
||||
asm/teachy_tv.o(.text);
|
||||
asm/unk_815C27C.o(.text);
|
||||
asm/unk_815C980.o(.text);
|
||||
|
|
|
|||
23
src/dodrio_berry_picking_2.c
Normal file
23
src/dodrio_berry_picking_2.c
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#include "global.h"
|
||||
#include "link.h"
|
||||
#include "link_rfu.h"
|
||||
|
||||
void sub_815A5BC(s32 a0)
|
||||
{
|
||||
struct Padded_U8 data[2];
|
||||
data[0].value = 1;
|
||||
data[1].value = a0;
|
||||
sub_80F9E2C(data);
|
||||
}
|
||||
|
||||
u8 sub_815A5E8(s32 a0)
|
||||
{
|
||||
u8 * r1;
|
||||
if ((gRecvCmds[0][0] & 0xFF00) != 0x2F00)
|
||||
return 0;
|
||||
r1 = (u8 *)&gRecvCmds[a0][1];
|
||||
if (r1[0] == 1)
|
||||
return r1[4];
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -620,22 +620,3 @@ void sub_815A540(void)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
void sub_815A5BC(s32 a0)
|
||||
{
|
||||
struct Padded_U8 data[2];
|
||||
data[0].value = 1;
|
||||
data[1].value = a0;
|
||||
sub_80F9E2C(data);
|
||||
}
|
||||
|
||||
u8 sub_815A5E8(s32 a0)
|
||||
{
|
||||
u8 * r1;
|
||||
if ((gRecvCmds[0][0] & 0xFF00) != 0x2F00)
|
||||
return 0;
|
||||
r1 = (u8 *)&gRecvCmds[a0][1];
|
||||
if (r1[0] == 1)
|
||||
return r1[4];
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user