Merge branch 'main' into doc/cutscene_index

This commit is contained in:
feacur
2024-11-18 00:49:36 +01:00
177 changed files with 780 additions and 720 deletions
+3 -3
View File
@@ -57,7 +57,7 @@ AudioMgr sAudioMgr;
OSMesgQueue sSerialEventQueue;
OSMesg sSerialMsgBuf[1];
#if OOT_DEBUG
#if DEBUG_FEATURES
void Main_LogSystemHeap(void) {
PRINTF(VT_FGCOL(GREEN));
PRINTF(
@@ -100,7 +100,7 @@ void Main(void* arg) {
fb, gSystemHeapSize);
SystemHeap_Init((void*)systemHeapStart, gSystemHeapSize); // initializes the system heap
#if OOT_DEBUG
#if DEBUG_FEATURES
{
void* debugHeapStart;
u32 debugHeapSize;
@@ -125,7 +125,7 @@ void Main(void* arg) {
osCreateMesgQueue(&sSerialEventQueue, sSerialMsgBuf, ARRAY_COUNT(sSerialMsgBuf));
osSetEventMesg(OS_EVENT_SI, &sSerialEventQueue, NULL);
#if OOT_DEBUG
#if DEBUG_FEATURES
Main_LogSystemHeap();
#endif