Skip to content

Commit 9f3ef33

Browse files
committed
fix ACCORE intr submodule init
seems like the Intrc structure not being initialized was the problem all along. TODO: confirm with uyjulian is this is safe
1 parent aca9ca2 commit 9f3ef33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

iop/arcade/accore/src/intr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "accore_internal.h"
1212

1313
static acUint8 masks_8[3] = {128u, 2u, 64u};
14-
static struct intr_softc Intrc;
14+
static struct intr_softc Intrc ={0,1};
1515

1616
static int intr_intr(void *arg)
1717
{

0 commit comments

Comments
 (0)