diff options
| author | EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com> | 2021-08-09 04:01:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-08 23:01:51 -0400 |
| commit | 823281291bf046a9c10159d8e2c72de38fa4643c (patch) | |
| tree | 3c5d8c18199e9ad4e397553d8839085f219e5c52 /src/boot_O2_g3 | |
| parent | 36e6f8cb3d44afc9d09b5e8646614ae25640461f (diff) | |
Script fixes, Type 1 cylinders fixed, rename `main` (#256)
* Fix actor_symbols.py
* Temporary fix to rename_sym.sh
* Fix the few Type1 cylinders
* Rename main -> Main
* chmod rename_global_asm, fix asm in rename_syms
* Format
Diffstat (limited to 'src/boot_O2_g3')
| -rw-r--r-- | src/boot_O2_g3/idle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot_O2_g3/idle.c b/src/boot_O2_g3/idle.c index 734c1ef54..41a074a02 100644 --- a/src/boot_O2_g3/idle.c +++ b/src/boot_O2_g3/idle.c @@ -70,7 +70,7 @@ void Main_ThreadEntry(void* arg) { IrqMgr_Init(&gIrqMgr, &sIrqMgrStackInfo, Z_PRIORITY_IRQMGR, 1); DmaMgr_Start(); Idle_InitCodeAndMemory(); - main(arg); + Main(arg); DmaMgr_Stop(); } |
