From 9e68866aaed81a1259930fe9fb66b2bb22781582 Mon Sep 17 00:00:00 2001 From: gijs Date: Fri, 20 Oct 2023 18:04:51 +0200 Subject: [PATCH] Clean up `nuSiMgrStop` --- src/_ob_icy_coast.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/_ob_icy_coast.c b/src/_ob_icy_coast.c index 66427e7..e1b5ac9 100644 --- a/src/_ob_icy_coast.c +++ b/src/_ob_icy_coast.c @@ -37,10 +37,9 @@ s32 nuSiSendMesg(NUScMsg mesg, void* dataPtr) { } void nuSiMgrStop(void) { - nuSiSendMesg(0x7F00, 0); + nuSiSendMesg(NU_SI_STOP_MGR_MSG, NULL); } - void __start_controller_thread(void) { osStartThread(&siMgrThread); }