Rename TutorialExec
This commit is contained in:
parent
31ab3ea3cf
commit
6e972fb0d2
4 changed files with 4 additions and 4 deletions
|
|
@ -58,7 +58,7 @@ TutorialLotteryExec = .text:0x00001930; // type:function size:0x28
|
||||||
TutorialBooHouseExec = .text:0x00001958; // type:function size:0x28
|
TutorialBooHouseExec = .text:0x00001958; // type:function size:0x28
|
||||||
TutorialNullExec = .text:0x00001980; // type:function size:0x4
|
TutorialNullExec = .text:0x00001980; // type:function size:0x4
|
||||||
CloseTutorial = .text:0x00001984; // type:function size:0x128 scope:local
|
CloseTutorial = .text:0x00001984; // type:function size:0x128 scope:local
|
||||||
TutorialExec = .text:0x00001AAC; // type:function size:0x2BC
|
TutorialHookExec = .text:0x00001AAC; // type:function size:0x2BC
|
||||||
TutorialSprCreate = .text:0x00001D68; // type:function size:0x84
|
TutorialSprCreate = .text:0x00001D68; // type:function size:0x84
|
||||||
TutorialSprKill = .text:0x00001DEC; // type:function size:0x50
|
TutorialSprKill = .text:0x00001DEC; // type:function size:0x50
|
||||||
TutorialSpaceShow = .text:0x00001E3C; // type:function size:0x174
|
TutorialSpaceShow = .text:0x00001E3C; // type:function size:0x174
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ void fn_1_E0(void);
|
||||||
void TutorialSprCreate(void);
|
void TutorialSprCreate(void);
|
||||||
void TutorialSprKill(void);
|
void TutorialSprKill(void);
|
||||||
void HostCreate(void);
|
void HostCreate(void);
|
||||||
int TutorialExec(s16, s32);
|
int TutorialHookExec(s16, s32);
|
||||||
|
|
||||||
void TutorialStartExec(void);
|
void TutorialStartExec(void);
|
||||||
void TutorialPreRollExec(void);
|
void TutorialPreRollExec(void);
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@ void BoardCreate(void)
|
||||||
boardWork->scene = 0;
|
boardWork->scene = 0;
|
||||||
boardWork->dice = 0;
|
boardWork->dice = 0;
|
||||||
boardWork->msg = 0;
|
boardWork->msg = 0;
|
||||||
BoardTutorialHookSet(&TutorialExec);
|
BoardTutorialHookSet(TutorialHookExec);
|
||||||
HostCreate();
|
HostCreate();
|
||||||
TutorialSprCreate();
|
TutorialSprCreate();
|
||||||
tutorialDoneF = 0;
|
tutorialDoneF = 0;
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ static TutorialScene sceneTbl[42] = {
|
||||||
{-1, NULL },
|
{-1, NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
int TutorialExec(s16 arg0, s32 arg1) {
|
int TutorialHookExec(s16 arg0, s32 arg1) {
|
||||||
if (arg0 == 30) {
|
if (arg0 == 30) {
|
||||||
CloseTutorial();
|
CloseTutorial();
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue