first try to draw first logo

This commit is contained in:
Lurs
2026-02-20 21:13:50 +01:00
parent 8020eb64ba
commit a41c3d59b4
26 changed files with 517 additions and 65 deletions
+10 -1
View File
@@ -720,11 +720,20 @@ void fapGm_After() {
}
void fapGm_Execute() {
static u32 sExecCount = 0;
if (sExecCount < 10 || (sExecCount % 300 == 0)) {
printf("[DIAG] fapGm_Execute frame=%d\n", sExecCount);
fflush(stdout);
}
sExecCount++;
#if DEBUG
JUTDbPrint::getManager()->setCharColor(g_HIO.mColor);
#endif
fpcM_Management(NULL, fapGm_After);
printf("[DIAG] fapGm_Execute: entering fpcM_Management...\n"); fflush(stdout);
fpcM_Management(NULL, fapGm_After);
printf("[DIAG] fapGm_Execute: fpcM_Management returned\n"); fflush(stdout);
cCt_Counter(0);
}