mirror of
https://github.com/zeldaret/tp
synced 2026-07-07 14:13:27 -04:00
fix functions not returning values (#2942)
* fix functions not returning values * implement functions that should return values
This commit is contained in:
@@ -45,7 +45,7 @@ public:
|
||||
void setCollision();
|
||||
int drawDbgInfo();
|
||||
void drawOtherMdl();
|
||||
int setCupAnm(int, int, f32);
|
||||
bool setCupAnm(int, int, f32);
|
||||
bool afterSetMotionAnm(int, int, f32, int);
|
||||
daNpcT_faceMotionAnmData_c getFaceMotionAnm(daNpcT_faceMotionAnmData_c);
|
||||
void changeAnm(int*, int*);
|
||||
|
||||
@@ -17,6 +17,7 @@ struct daNpc_Pachi_Besu_HIOParam {
|
||||
};
|
||||
|
||||
class daNpc_Pachi_Besu_HIO_c : public mDoHIO_entry_c {
|
||||
public:
|
||||
/* 0x8 */ daNpc_Pachi_Besu_HIOParam param;
|
||||
};
|
||||
|
||||
|
||||
@@ -107,7 +107,7 @@ public:
|
||||
void setCollision();
|
||||
int drawDbgInfo();
|
||||
void drawOtherMdl();
|
||||
BOOL setFlagAnm(int, int, f32);
|
||||
bool setFlagAnm(int, int, f32);
|
||||
bool afterSetMotionAnm(int, int, f32, int);
|
||||
BOOL selectAction();
|
||||
BOOL chkAction(actionFunc);
|
||||
|
||||
@@ -96,7 +96,7 @@ public:
|
||||
|
||||
virtual ~daObj_KBacket_c();
|
||||
int create();
|
||||
int setLaunchParam(float param_0, float param_1, short param_2) {
|
||||
void setLaunchParam(float param_0, float param_1, short param_2) {
|
||||
float fVar2;
|
||||
|
||||
s16 iVar1 = cM_deg2s(param_1);
|
||||
|
||||
@@ -14,8 +14,8 @@ public:
|
||||
virtual ~daObjIsuChild_c();
|
||||
int createHeap();
|
||||
void create(daObjNagaisu_c*, dCcD_Stts*);
|
||||
int execute();
|
||||
int draw(dMdl_c*);
|
||||
void execute();
|
||||
void draw(dMdl_c*);
|
||||
void Delete();
|
||||
bool chkHit();
|
||||
void callEmt();
|
||||
|
||||
@@ -202,7 +202,7 @@ public:
|
||||
u8 getCptoNum(u8);
|
||||
void copyToSelBack();
|
||||
void copyToSelPaneMove();
|
||||
bool yesnoMenuMoveAnmInitSet(int, int);
|
||||
void yesnoMenuMoveAnmInitSet(int, int);
|
||||
bool yesnoMenuMoveAnm();
|
||||
bool yesnoSelectMoveAnm();
|
||||
void yesnoCursorShow();
|
||||
|
||||
Reference in New Issue
Block a user