mirror of https://github.com/zeldaret/oot.git
T() Got the rail data
This commit is contained in:
parent
ca438322b0
commit
67f34b3c7c
|
@ -140,11 +140,12 @@ void EnNb_UpdatePath(EnNb* this, PlayState* play) {
|
||||||
this->finalPos.z = pointPos[1].z;
|
this->finalPos.z = pointPos[1].z;
|
||||||
this->pathYaw =
|
this->pathYaw =
|
||||||
RAD_TO_BINANG(Math_FAtan2F(this->finalPos.x - this->initialPos.x, this->finalPos.z - this->initialPos.z));
|
RAD_TO_BINANG(Math_FAtan2F(this->finalPos.x - this->initialPos.x, this->finalPos.z - this->initialPos.z));
|
||||||
// "En_Nb_Get_path_info Rail Data Get! = %d!!!!!!!!!!!!!!"
|
PRINTF(T("En_Nb_Get_path_info レールデータをゲットだぜ = %d!!!!!!!!!!!!!!\n",
|
||||||
PRINTF("En_Nb_Get_path_info レールデータをゲットだぜ = %d!!!!!!!!!!!!!!\n", path);
|
"En_Nb_Get_path_info Got the rail data = %d!!!!!!!!!!!!!!\n"),
|
||||||
|
path);
|
||||||
} else {
|
} else {
|
||||||
// "En_Nb_Get_path_info Rail Data Doesn't Exist!!!!!!!!!!!!!!!!!!!!"
|
PRINTF(T("En_Nb_Get_path_info レールデータが無い!!!!!!!!!!!!!!!!!!!!\n",
|
||||||
PRINTF("En_Nb_Get_path_info レールデータが無い!!!!!!!!!!!!!!!!!!!!\n");
|
"En_Nb_Get_path_info No rail data!!!!!!!!!!!!!!!!!!!!\n"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1606,9 +1606,12 @@ void func_80B56F10(EnZl3* this, PlayState* play) {
|
||||||
pathHead += waypoint;
|
pathHead += waypoint;
|
||||||
this->unk_30C = pathHead;
|
this->unk_30C = pathHead;
|
||||||
this->unk_310 = pathHead->count;
|
this->unk_310 = pathHead->count;
|
||||||
PRINTF("En_Zl3_Get_path_info レールデータをゲットだぜ = %d!!!!!!!!!!!!!!\n", waypoint);
|
PRINTF(T("En_Zl3_Get_path_info レールデータをゲットだぜ = %d!!!!!!!!!!!!!!\n",
|
||||||
|
"En_Zl3_Get_path_info Got the rail data = %d!!!!!!!!!!!!!!\n"),
|
||||||
|
waypoint);
|
||||||
} else {
|
} else {
|
||||||
PRINTF("En_Zl3_Get_path_info レールデータが無い!!!!!!!!!!!!!!!!!!!!\n");
|
PRINTF(T("En_Zl3_Get_path_info レールデータが無い!!!!!!!!!!!!!!!!!!!!\n",
|
||||||
|
"En_Zl3_Get_path_info No rail data!!!!!!!!!!!!!!!!!!!!\n"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue