diff options
| author | Benjamin ROELANDT <benjamin.roelandt@gmail.com> | 2026-08-02 17:45:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-02 11:45:21 -0400 |
| commit | dbc093a3cfefac7f38088aa14c07115390d14fe5 (patch) | |
| tree | edf45d983965649c16535eef7c2443c403643595 /src/d/d_picture_box.cpp | |
| parent | 6b911411f071a174d794ced3a583fceff8073446 (diff) | |
* First version of d_scope, everything is matching on all version, probably missing a few inline on undocumented field that i did not manage to find
* Readd stuff previously deleted but badly tested
* Rename some fields and a few more inline
doesn't improve matching but i think it looks more genuine
* clean up syntax
* move d_scptyp enum and add forgotten inline
* build fix
* replace seStart call with proper enum
Diffstat (limited to 'src/d/d_picture_box.cpp')
| -rw-r--r-- | src/d/d_picture_box.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/d/d_picture_box.cpp b/src/d/d_picture_box.cpp index 6a10e51c..82f5b387 100644 --- a/src/d/d_picture_box.cpp +++ b/src/d/d_picture_box.cpp @@ -631,7 +631,7 @@ void dJle_Pb_c::selectMode() { remainMessageSet(pictureNum); mModeSubState = PB_SUB_IDLE_e; - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); dMenu_flagSet(0); } } else if (CPad_CHECK_TRIG_B(0) && mDoGph_getCaptureStep() == 5) { @@ -640,7 +640,7 @@ void dJle_Pb_c::selectMode() { mDoAud_seStart(JA_SE_UTUSHIE_DEL_PIC); mModeSubState = PB_SUB_IDLE_e; - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); dMenu_flagSet(0); } } @@ -803,13 +803,13 @@ void dJle_Pb_c::pictureEraseWait() { } mModeSubState = PB_SUB_IDLE_e; - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); } else if (CPad_CHECK_TRIG_B(0)) { existMessageSet(dComIfGs_getPictureNum()); mDoAud_seStart(JA_SE_UTUSHIE_B_LEAVE_PIC); mModeSubState = PB_SUB_IDLE_e; - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); } } @@ -845,13 +845,13 @@ void dJle_Pb_c::pictureDecide() { mDoAud_seStart(JA_SE_UTUSHIE_B_LEAVE_PIC); } mModeSubState = PB_SUB_IDLE_e; - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); } else if (CPad_CHECK_TRIG_B(0)) { existMessageSet(dComIfGs_getPictureNum()); mDoAud_seStart(JA_SE_UTUSHIE_B_LEAVE_PIC); mModeSubState = PB_SUB_IDLE_e; - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); } } @@ -1958,7 +1958,7 @@ void dJle_Pb_c::_copen() { cameraAlphaInc(fopMsgM_valueIncrease(10, mFadeTimer, 0)); if (mFadeTimer == 10) { - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); mExecState = PB_EXEC_CAMERA_MOVE_e; mDoAud_seStart(JA_SE_ITM_SUBMENU_IN_2); } @@ -1985,7 +1985,7 @@ void dJle_Pb_c::_bopen() { browseAlphaInc(fopMsgM_valueIncrease(10, mFadeTimer, 0)); if (mFadeTimer == 10) { - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); mExecState = PB_EXEC_BROWSE_MOVE_e; mDoAud_seStart(JA_SE_ITM_SUBMENU_IN_2); } @@ -2017,7 +2017,7 @@ void dJle_Pb_c::_gopen() { pict->snap_result_detail = 0; pict->capture_format = GX_TF_CMPR; - dComIfGp_setScopeMesgStatus(fopMsgStts_UNKB_e); + dComIfGp_setScopeMesgStatus(fopMsgStts_SCOPE_ACTIVE_e); mExecState = PB_EXEC_GET_MOVE_e; mDoAud_seStart(JA_SE_ITM_SUBMENU_IN_2); } |
