diff --git a/src/dp_intro.c b/src/dp_intro.c index 4fb8245..c9202fc 100644 --- a/src/dp_intro.c +++ b/src/dp_intro.c @@ -197,7 +197,7 @@ void func_8000183C(UNUSED void* arg) { } } -void func_800019C8(void) { +void StartDPIntroThread(void) { switch (osTvType) { case 1: case 2: diff --git a/src/dp_intro.h b/src/dp_intro.h index b037e36..a4a724d 100644 --- a/src/dp_intro.h +++ b/src/dp_intro.h @@ -11,7 +11,7 @@ void func_8000152C(struct UnkArray4* arg0); void func_800015A8(void); void func_800017E4(void); void func_8000183C(UNUSED void* arg); -void func_800019C8(void); +void StartDPIntroThread(void); void func_80001AD4(u16 color); u16 func_80001B2C(void); s32 func_80001B40(void); diff --git a/src/main.c b/src/main.c index 92304a0..28f32ff 100644 --- a/src/main.c +++ b/src/main.c @@ -27,7 +27,7 @@ void Idle_ThreadEntry(UNUSED void* unused) { rsp_init(); StartRSPThread(); StartDDThread(); - func_800019C8(); + StartDPIntroThread(); SoftReset_CreateThread(); osCreateThread(&pThreads, 6, &Game_Thread, 0, &D_800818E0, 20); osStartThread(&pThreads);