Merge branch 'Rainchus:main' into main

This commit is contained in:
CreateSource 2024-06-29 22:41:38 -04:00 committed by GitHub
commit d17439b3c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 19 additions and 19 deletions

View file

@ -1,8 +1,8 @@
#include "REL/board_executor.h"
#include "rel_sqrt_consts.h"
static void InitBoard(void) {
BoardCommonInit(BoardCreate, BoardDestroy);
static void ObjectSetup(void) {
BoardObjectSetup(BoardCreate, BoardDestroy);
}
s32 _prolog(void) {
@ -11,7 +11,7 @@ s32 _prolog(void) {
(**ctors)();
ctors++;
}
InitBoard();
ObjectSetup();
return 0;
}