From 5ccd3916ff719ea4ed49030077794fadda048cb9 Mon Sep 17 00:00:00 2001 From: Arisotura Date: Thu, 2 Nov 2023 15:46:35 +0100 Subject: [PATCH] better be safe than sorry --- src/DSi_Camera.cpp | 2 +- src/SPU.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DSi_Camera.cpp b/src/DSi_Camera.cpp index c5fa29df..80e578f7 100644 --- a/src/DSi_Camera.cpp +++ b/src/DSi_Camera.cpp @@ -85,7 +85,7 @@ void Reset() BufferNumLines = 0; CurCamera = nullptr; - NDS::ScheduleEvent(NDS::Event_DSi_CamIRQ, true, kIRQInterval, IRQ, 0); + NDS::ScheduleEvent(NDS::Event_DSi_CamIRQ, false, kIRQInterval, IRQ, 0); } void Stop() diff --git a/src/SPU.cpp b/src/SPU.cpp index 8148bac2..76fdd2d7 100644 --- a/src/SPU.cpp +++ b/src/SPU.cpp @@ -163,7 +163,7 @@ void Reset() Capture[0]->Reset(); Capture[1]->Reset(); - NDS::ScheduleEvent(NDS::Event_SPU, true, 1024, Mix, 0); + NDS::ScheduleEvent(NDS::Event_SPU, false, 1024, Mix, 0); } void Stop()