summaryrefslogtreecommitdiff
path: root/src/code
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-01-29 04:25:58 -0800
committerGitHub <noreply@github.com>2024-01-29 07:25:58 -0500
commit6e0d67f9ec1f0c2279fa29781b57e273161f60b5 (patch)
tree177ec37b11ef57b9c17f83c9def6917dc38caf19 /src/code
parent8af0919e7d3bc9922154decee89382bb031941a6 (diff)
Check formatting in CI (#1652)
* Check formatting in CI * Move deleteDir() to cleanup section * Revert "Move deleteDir() to cleanup section" This reverts commit 4b0dd80cacf60e603077ea1d3669ca3511d366dd. * Give up on check_format.txt * Fix formatting
Diffstat (limited to 'src/code')
-rw-r--r--src/code/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/main.c b/src/code/main.c
index 15a17084f..b7407c3bf 100644
--- a/src/code/main.c
+++ b/src/code/main.c
@@ -54,7 +54,7 @@ void Main(void* arg) {
// "System heap initalization"
PRINTF("システムヒープ初期化 %08x-%08x %08x\n", systemHeapStart, fb, gSystemHeapSize);
SystemHeap_Init((void*)systemHeapStart, gSystemHeapSize); // initializes the system heap
-
+
#ifdef OOT_DEBUG
{
void* debugHeapStart;
@@ -67,7 +67,7 @@ void Main(void* arg) {
debugHeapSize = 0x400;
debugHeapStart = SYSTEM_ARENA_MALLOC(debugHeapSize, "../main.c", 565);
}
-
+
PRINTF("debug_InitArena(%08x, %08x)\n", debugHeapStart, debugHeapSize);
DebugArena_Init(debugHeapStart, debugHeapSize);
}