T() Got the rail data

This commit is contained in:
Dragorn421 2025-05-27 19:49:20 +02:00
parent ca438322b0
commit 67f34b3c7c
No known key found for this signature in database
GPG Key ID: 381AEBAF3D429335
2 changed files with 10 additions and 6 deletions

View File

@ -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"));
} }
} }

View File

@ -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"));
} }
} }