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

Function System_Init

Source/System/System.cpp:222–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

220};
221
222bool System_Init()
223{
224 for(u32 i = 0; i < ARRAYSIZE(gSysInitTable); i++)
225 {
226 const SysEntityEntry & entry = gSysInitTable[i];
227
228 if (entry.init == NULL)
229 continue;
230
231 if (entry.init())
232 {
233 #ifdef DAEDALUS_DEBUG_CONSOLE
234 DBGConsole_Msg(0, "==>Initialized %s", entry.name);
235 #endif
236 }
237 else
238 {
239 #ifdef DAEDALUS_DEBUG_CONSOLE
240 DBGConsole_Msg(0, "==>Initialize %s Failed", entry.name);
241 #endif
242 return false;
243 }
244 }
245
246 return true;
247}
248
249bool System_Open(const char * filename)
250{

Callers 3

InitializeFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected