1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-07 00:14:38 +00:00

system_heap -> runtime (#2500)

* very light documentation for runtime

* more renaming

* one more rename

* RunTime -> Runtime
This commit is contained in:
fig02 2025-04-02 22:04:08 -04:00 committed by GitHub
parent dc9a1dca1e
commit ba9ca90c15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 25 additions and 28 deletions

View file

@ -109,7 +109,7 @@ void Main(void* arg) {
gSystemHeapSize = fb - systemHeapStart;
PRINTF(T("システムヒープ初期化 %08x-%08x %08x\n", "System heap initialization %08x-%08x %08x\n"), systemHeapStart,
fb, gSystemHeapSize);
SystemHeap_Init((void*)systemHeapStart, gSystemHeapSize); // initializes the system heap
Runtime_Init((void*)systemHeapStart, gSystemHeapSize);
#if DEBUG_FEATURES
{