Rename function

This commit is contained in:
Zac 2024-11-15 06:19:41 +00:00 committed by GitHub
parent d20f226b96
commit 55d982bfe3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -1189,7 +1189,7 @@ LimitVectorLength = 0x1EE2B0; // type:func
////////////////////////////////////////////////////////////////
// P2/wipe.c
////////////////////////////////////////////////////////////////
func_001F0428 = 0x1F0428; // type:func
WipeToWorldWarp = 0x1F0428; // type:func
g_pwipe = 0x275f80;
g_wipe = 0x275f84;

View File

@ -50,7 +50,7 @@ extern WIPE *g_pwipe;
extern WIPE g_wipe;
extern "C" {
void func_001F0428(const void *pchzWorld, OID oidWarp, WIPEK wipek);
void WipeToWorldWarp(const void *pchzWorld, OID oidWarp, WIPEK wipek);
}
#endif // WIPE_H

View File

@ -55,7 +55,7 @@ INCLUDE_ASM(const s32, "P2/game", RetryGame__Fv);
void StartGame()
{
UnloadGame();
func_001F0428(D_00247AB0, OID_Nil, WIPEK_Fade);
WipeToWorldWarp(D_00247AB0, OID_Nil, WIPEK_Fade);
}
INCLUDE_ASM(const s32, "P2/game", FUN_00160948);

View File

@ -1,3 +1,3 @@
#include <wipe.h>
INCLUDE_ASM(const s32, "P2/wipe", func_001F0428);
INCLUDE_ASM(const s32, "P2/wipe", WipeToWorldWarp);