mirror of
https://github.com/zeldaret/ss
synced 2026-07-08 22:04:41 -04:00
Forceactive
This commit is contained in:
@@ -12,6 +12,11 @@ force_active: [
|
||||
"ProcessTab__Q34nw4r2ut19TagProcessorBase<w>FPQ34nw4r2ut15PrintContext<w>",
|
||||
# "RemoveResourceBuffer__Q44nw4r2ut6detail11ResFontBaseFv",
|
||||
"RemoveResource__Q34nw4r2ut7ResFontFv",
|
||||
"ModuleProlog",
|
||||
"ModuleEpilog",
|
||||
"ModuleUnresolved",
|
||||
"ModuleConstructorsX",
|
||||
"ModuleDestructorsX",
|
||||
]
|
||||
# modules:
|
||||
# - object: orig/SOUE01/rels/d_a_asura_bulletNP.rel
|
||||
|
||||
@@ -192,7 +192,7 @@ toBeSorted/counters/extra_wallet_counter.cpp:
|
||||
.sbss start:0x80575640 end:0x80575648
|
||||
|
||||
DynamicLink.cpp:
|
||||
.text start:0x802DF100 end:0x802DFCB0
|
||||
.text start:0x802DF100 end:0x802DFD74
|
||||
.data start:0x805419E8 end:0x80541A70
|
||||
.sdata start:0x80573F78 end:0x80573FB0
|
||||
.sbss start:0x80575B80 end:0x80575BA0
|
||||
|
||||
+13
-12
@@ -311,10 +311,10 @@ int DynamicModuleControl::getModuleSize() const {
|
||||
|
||||
const char *DynamicModuleControl::getModuleTypeString() const {
|
||||
static const char *REL_LOAD_TYPES[4] = {
|
||||
"????",
|
||||
"MEM",
|
||||
"ARAM",
|
||||
"DVD",
|
||||
"????",
|
||||
"MEM",
|
||||
"ARAM",
|
||||
"DVD",
|
||||
};
|
||||
return REL_LOAD_TYPES[mResourceType & 3];
|
||||
}
|
||||
@@ -351,23 +351,24 @@ void DbMapFile::Unregister() {
|
||||
unk_0 = 0;
|
||||
}
|
||||
}
|
||||
/*
|
||||
// probably part of a different file
|
||||
extern "C" void ModuleProlog() {}
|
||||
extern "C" {
|
||||
|
||||
extern "C" void ModuleEpilog() {}
|
||||
void ModuleProlog() {}
|
||||
|
||||
extern "C" void ModuleUnresolved() {}
|
||||
void ModuleEpilog() {}
|
||||
|
||||
extern "C" void ModuleConstructorsX(void (**ptrs)()) {
|
||||
void ModuleUnresolved() {}
|
||||
|
||||
void ModuleConstructorsX(void (**ptrs)()) {
|
||||
for (; *ptrs != nullptr; ptrs++) {
|
||||
(*ptrs)();
|
||||
}
|
||||
}
|
||||
|
||||
extern "C" void ModuleDestructorsX(void (**ptrs)()) {
|
||||
void ModuleDestructorsX(void (**ptrs)()) {
|
||||
for (; *ptrs != nullptr; ptrs++) {
|
||||
(*ptrs)();
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user