mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-05 09:05:26 -04:00
first try to draw first logo
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
#include "f_op/f_op_scene_pause.h"
|
||||
#include "f_pc/f_pc_executor.h"
|
||||
#include "f_pc/f_pc_manager.h"
|
||||
#include <cstdio>
|
||||
|
||||
static cPhs_Step fopScnRq_phase_ClearOverlap(scene_request_class* i_sceneReq) {
|
||||
return fopOvlpM_ClearOfReq() == 1 ? cPhs_NEXT_e : cPhs_INIT_e;
|
||||
@@ -16,7 +17,13 @@ static cPhs_Step fopScnRq_phase_ClearOverlap(scene_request_class* i_sceneReq) {
|
||||
}
|
||||
|
||||
static cPhs_Step fopScnRq_phase_Execute(scene_request_class* i_sceneReq) {
|
||||
return fpcNdRq_Execute(&i_sceneReq->create_request);
|
||||
static int sExecLogCount = 0;
|
||||
cPhs_Step ret = (cPhs_Step)fpcNdRq_Execute(&i_sceneReq->create_request);
|
||||
if (sExecLogCount < 30) {
|
||||
printf("[DIAG] fopScnRq_phase_Execute: ret=%d name=%d\n", ret, i_sceneReq->create_request.name); fflush(stdout);
|
||||
sExecLogCount++;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static cPhs_Step fopScnRq_phase_IsDoingOverlap(scene_request_class* i_sceneReq) {
|
||||
|
||||
Reference in New Issue
Block a user