Found obGetStrategyName
This commit is contained in:
parent
197963c330
commit
5cf59a6169
|
|
@ -570,4 +570,7 @@ extern SomethingMusic __MAYBE_SONG_800EB150;
|
|||
extern SomethingMusic __MAYBE_SONG_800EB240;
|
||||
extern SomethingMusic __MAYBE_SONG_800EB290;
|
||||
|
||||
extern char *obStrategyName[];
|
||||
extern char *obGetStrategyName(u8 index);
|
||||
|
||||
#endif
|
||||
|
|
@ -241,6 +241,8 @@ STR_CANNOT_BE_USED = 0x8021DF80; // rom:0x1B2290
|
|||
STR_PETRIFICATION = 0x8021DFA0; // rom:0x1B22B0
|
||||
|
||||
obStrategyName = 0x80186FC4; // rom:0x5CEC4 size:16
|
||||
obGetStrategyName = 0x8016B070; // rom:0x40F70
|
||||
|
||||
//obStrategyNameAutonomous = 0x80186F70; // rom:0x5CE70 type:asciz
|
||||
//obStrategyNameAttackStrongest = 0x80186F80; // rom:0x5CE80 type:asciz
|
||||
//obStrategyNameAttackLeader = 0x80186F94; // rom:0x5CE94 type:asciz
|
||||
|
|
|
|||
|
|
@ -1,14 +1,15 @@
|
|||
#include "common.h"
|
||||
|
||||
void func_8016AF80(void) {
|
||||
}
|
||||
void func_8016AF80(void) { }
|
||||
|
||||
void func_8016AF88(void) {
|
||||
}
|
||||
void func_8016AF88(void) { }
|
||||
|
||||
INCLUDE_ASM(const s32, "segment_obdata/_ob_blushing_ship", func_8016AF90);
|
||||
|
||||
INCLUDE_ASM(const s32, "segment_obdata/_ob_blushing_ship", func_8016B070);
|
||||
/* 40F70 8016B070 */
|
||||
char *obGetStrategyName(u8 index) {
|
||||
return obStrategyName[index];
|
||||
}
|
||||
|
||||
INCLUDE_ASM(const s32, "segment_obdata/_ob_blushing_ship", func_8016B088);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue