mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-23 07:21:19 +00:00
Replace most osSyncPrintf calls with PRINTF macro (#1598)
* Replace most osSyncPrintf calls with PRINTF macro * DEBUG -> OOT_DEBUG
This commit is contained in:
parent
6eb3bf401c
commit
324db1d578
297 changed files with 2642 additions and 2679 deletions
|
@ -156,7 +156,7 @@ void EnTa_Init(Actor* thisx, PlayState* play2) {
|
|||
switch (this->actor.params) {
|
||||
case ENTA_IN_KAKARIKO:
|
||||
// "Exile Talon"
|
||||
osSyncPrintf(VT_FGCOL(CYAN) " 追放タロン \n" VT_RST);
|
||||
PRINTF(VT_FGCOL(CYAN) " 追放タロン \n" VT_RST);
|
||||
if (GET_EVENTCHKINF(EVENTCHKINF_TALON_RETURNED_FROM_KAKARIKO)) {
|
||||
Actor_Kill(&this->actor);
|
||||
} else if (!LINK_IS_ADULT) {
|
||||
|
@ -177,14 +177,14 @@ void EnTa_Init(Actor* thisx, PlayState* play2) {
|
|||
|
||||
case ENTA_RETURNED_FROM_KAKARIKO:
|
||||
// "Return Talon"
|
||||
osSyncPrintf(VT_FGCOL(CYAN) " 出戻りタロン \n" VT_RST);
|
||||
PRINTF(VT_FGCOL(CYAN) " 出戻りタロン \n" VT_RST);
|
||||
if (!GET_EVENTCHKINF(EVENTCHKINF_TALON_RETURNED_FROM_KAKARIKO)) {
|
||||
Actor_Kill(&this->actor);
|
||||
} else if (!LINK_IS_ADULT) {
|
||||
Actor_Kill(&this->actor);
|
||||
} else if (play->sceneId == SCENE_STABLE && !IS_DAY) {
|
||||
Actor_Kill(&this->actor);
|
||||
osSyncPrintf(VT_FGCOL(CYAN) " 夜はいない \n" VT_RST);
|
||||
PRINTF(VT_FGCOL(CYAN) " 夜はいない \n" VT_RST);
|
||||
} else {
|
||||
EnTa_SetupAction(this, EnTa_IdleAtRanch, EnTa_AnimRepeatCurrent);
|
||||
this->eyeIndex = TALON_EYE_INDEX_OPEN;
|
||||
|
@ -195,7 +195,7 @@ void EnTa_Init(Actor* thisx, PlayState* play2) {
|
|||
|
||||
default: // Child era Talon
|
||||
// "Other Talon"
|
||||
osSyncPrintf(VT_FGCOL(CYAN) " その他のタロン \n" VT_RST);
|
||||
PRINTF(VT_FGCOL(CYAN) " その他のタロン \n" VT_RST);
|
||||
if (play->sceneId == SCENE_HYRULE_CASTLE) {
|
||||
if (GET_EVENTCHKINF(EVENTCHKINF_TALON_RETURNED_FROM_CASTLE)) {
|
||||
Actor_Kill(&this->actor);
|
||||
|
@ -212,7 +212,7 @@ void EnTa_Init(Actor* thisx, PlayState* play2) {
|
|||
this->actor.shape.shadowScale = 54.0f;
|
||||
}
|
||||
} else if (play->sceneId == SCENE_LON_LON_BUILDINGS) {
|
||||
osSyncPrintf(VT_FGCOL(CYAN) " ロンロン牧場の倉庫 の タロン\n" VT_RST);
|
||||
PRINTF(VT_FGCOL(CYAN) " ロンロン牧場の倉庫 の タロン\n" VT_RST);
|
||||
if (!GET_EVENTCHKINF(EVENTCHKINF_TALON_RETURNED_FROM_CASTLE)) {
|
||||
Actor_Kill(&this->actor);
|
||||
} else if (LINK_IS_ADULT) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue