mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 13:49:54 +00:00
Re-add stubbed function
This commit is contained in:
parent
7054314e4a
commit
9198c035bb
@ -126,7 +126,7 @@ FCheckLm__FP2LMf = 0x1EB050; // type:func
|
|||||||
FCheckAlm = 0x1EB080; // type:func
|
FCheckAlm = 0x1EB080; // type:func
|
||||||
GLimitLm = 0x1EB0F8; // type:func
|
GLimitLm = 0x1EB0F8; // type:func
|
||||||
SgnCompareG = 0x1EB128; // type:func
|
SgnCompareG = 0x1EB128; // type:func
|
||||||
Force = 0x1EB160; // type:func
|
Force__FPv = 0x1EB160; // type:func
|
||||||
MinimizeRange = 0x1EB168; // type:func
|
MinimizeRange = 0x1EB168; // type:func
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,6 +34,6 @@ int FCheckLm(LM* plm, float g);
|
|||||||
/**
|
/**
|
||||||
* @brief Stubbed function, does nothing.
|
* @brief Stubbed function, does nothing.
|
||||||
*/
|
*/
|
||||||
void Force();
|
void Force(void *pv);
|
||||||
|
|
||||||
#endif // UTIL_H
|
#endif // UTIL_H
|
||||||
|
@ -11,7 +11,6 @@ INCLUDE_ASM(const s32, "P2/difficulty", OnDifficultyWorldPostLoad);
|
|||||||
|
|
||||||
void OnDifficultyInitialTeleport(DIFFICULTY* pdifficulty) {
|
void OnDifficultyInitialTeleport(DIFFICULTY* pdifficulty) {
|
||||||
// Stubbed, does nothing.
|
// Stubbed, does nothing.
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
INCLUDE_ASM(const s32, "P2/difficulty", OnDifficultyPlayerDeath);
|
INCLUDE_ASM(const s32, "P2/difficulty", OnDifficultyPlayerDeath);
|
||||||
|
@ -50,7 +50,10 @@ INCLUDE_ASM(const s32, "P2/util", GLimitLm);
|
|||||||
|
|
||||||
INCLUDE_ASM(const s32, "P2/util", SgnCompareG);
|
INCLUDE_ASM(const s32, "P2/util", SgnCompareG);
|
||||||
|
|
||||||
INCLUDE_ASM(const s32, "P2/util", Force); // stubbed
|
void Force(void *pv)
|
||||||
|
{
|
||||||
|
// Stubbed, does nothing.
|
||||||
|
}
|
||||||
|
|
||||||
INCLUDE_ASM(const s32, "P2/util", MinimizeRange);
|
INCLUDE_ASM(const s32, "P2/util", MinimizeRange);
|
||||||
INCLUDE_ASM(const s32, "P2/util", func_001EB458);
|
INCLUDE_ASM(const s32, "P2/util", func_001EB458);
|
||||||
|
Loading…
Reference in New Issue
Block a user