Misc cleanup

This commit is contained in:
LagoLunatic
2025-01-08 15:42:47 -05:00
parent 3d63a54587
commit f74fd75332
14 changed files with 34 additions and 24 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ extern "C" int search_partial_address(void* address, int* module_id, int* sectio
if (address == NULL)
return 0xFFFFFFFF;
OSModuleInfo* module = *(OSModuleInfo**)0x800030C8;
OSModuleInfo* module = __OSModuleList.head;
for (; module != NULL; module = (OSModuleInfo*)module->link.next) {
u32 i, addr;
OSSectionInfo* section = (OSSectionInfo*)module->sectionInfoOffset;