From c60eaaaff00c06cb3187290c58b69ea9c1fc159a Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Sat, 7 Aug 2021 13:03:11 +0100 Subject: [PATCH] doesn't need to be public --- agb/src/interrupt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agb/src/interrupt.rs b/agb/src/interrupt.rs index b138d716..adab80b4 100644 --- a/agb/src/interrupt.rs +++ b/agb/src/interrupt.rs @@ -91,7 +91,7 @@ fn disable_interrupts() { INTERRUPTS_ENABLED.set(0); } -pub(crate) struct InterruptRoot { +struct InterruptRoot { next: Cell<*const InterruptClosure>, count: Cell, interrupt: Interrupt,