MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / System_Close

Function System_Close

Source/System/System.cpp:273–286  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

271}
272
273void System_Close()
274{
275 for(s32 i = ARRAYSIZE(gRomInitTable) - 1 ; i >= 0; i--)
276 {
277 const RomEntityEntry & entry = gRomInitTable[i];
278
279 if (entry.close == NULL)
280 continue;
281 #ifdef DAEDALUS_DEBUG_CONSOLE
282 DBGConsole_Msg(0, "==>Close %s", entry.name);
283 #endif
284 entry.close();
285 }
286}
287
288void System_Finalize()
289{

Callers 5

mainFunction · 0.85
mainFunction · 0.85
BatchTestMainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by 1

BatchTestMainFunction · 0.68