first try to draw first logo

This commit is contained in:
Lurs
2026-02-20 21:13:50 +01:00
parent a4d72437ef
commit 97e7a8b145
26 changed files with 517 additions and 65 deletions
+3
View File
@@ -184,8 +184,10 @@ static u32 calcSum2(u16 const* data, u32 size) {
bool DynamicModuleControl::do_load() {
if (mModule != NULL) {
printf("[DIAG] DynamicModuleControl::do_load(%s) already loaded\n", mName); fflush(stdout);
return true;
}
printf("[DIAG] DynamicModuleControl::do_load(%s) loading... sArchive=%p sFileCache=%p\n", mName, sArchive, sFileCache); fflush(stdout);
JKRExpHeap* heap = mDoExt_getArchiveHeap();
s32 i = 0;
while (true) {
@@ -278,6 +280,7 @@ bool DynamicModuleControl::do_load() {
break;
}
}
printf("[DIAG] DynamicModuleControl::do_load(%s) SUCCESS mModule=%p type=%d size=%d\n", mName, mModule, mResourceType, mSize); fflush(stdout);
return true;
}