Preliminary fixes for boot/libultra (#1032)

* Preliminary fixes

* Missed a NULL
This commit is contained in:
Tharo
2021-11-28 12:50:35 +00:00
committed by GitHub
parent 09f0dc84b8
commit 982e7be1f7
31 changed files with 68 additions and 88 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ s32 osSetTimer(OSTimer* timer, OSTime countdown, OSTime interval, OSMesgQueue* m
OSTimer* next;
u32 count;
u32 value;
s32 prevInt;
u32 prevInt;
timer->next = NULL;
timer->prev = NULL;
+1 -1
View File
@@ -1,7 +1,7 @@
#include "global.h"
s32 osStopTimer(OSTimer* timer) {
register s32 prevInt;
register u32 prevInt;
OSTimer* next;
if (!timer->next) {