summaryrefslogtreecommitdiff
path: root/src/boot_O2_g3/boot_main.c
diff options
context:
space:
mode:
authorRozelette <Rozelette@users.noreply.github.com>2021-04-19 16:44:12 -0500
committerGitHub <noreply@github.com>2021-04-19 17:44:12 -0400
commite97f10a6fa573e8b817ed03a4674d52b1818dafa (patch)
tree25821c9094c4aea2f1ad167c6227d2d2afbcd3f2 /src/boot_O2_g3/boot_main.c
parent768ca0839b862f1eff09661d9b20af51f70a738e (diff)
sys_slowly OK (#101)
* sys_slowly OK * Feedback * rename type member
Diffstat (limited to 'src/boot_O2_g3/boot_main.c')
-rw-r--r--src/boot_O2_g3/boot_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot_O2_g3/boot_main.c b/src/boot_O2_g3/boot_main.c
index 15f975124..2a7d69f98 100644
--- a/src/boot_O2_g3/boot_main.c
+++ b/src/boot_O2_g3/boot_main.c
@@ -9,6 +9,6 @@ void bootproc(void) {
osUnmapTLBAll();
gCartHandle = osCartRomInit();
StackCheck_Init(&sIdleThreadInfo, sIdleThreadStack, sIdleThreadStack + sizeof(sIdleThreadStack), 0, 256, "idle");
- osCreateThread(&sIdleThread, 1, Idle_ThreadEntry, NULL, sIdleThreadStack + sizeof(sIdleThreadStack), 12);
+ osCreateThread(&sIdleThread, Z_THREAD_ID_IDLE, Idle_ThreadEntry, NULL, sIdleThreadStack + sizeof(sIdleThreadStack), Z_PRIORITY_IDLE);
osStartThread(&sIdleThread);
}