diff options
author | Arisotura <thetotalworm@gmail.com> | 2023-11-02 15:46:35 +0100 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2023-11-02 15:46:35 +0100 |
commit | 5ccd3916ff719ea4ed49030077794fadda048cb9 (patch) | |
tree | b0ec809651e5faea0753aeedfead3cf78e165d2c /src | |
parent | 2959d089fecb1a56261052b3733be280536b24f9 (diff) |
better be safe than sorry
Diffstat (limited to 'src')
-rw-r--r-- | src/DSi_Camera.cpp | 2 | ||||
-rw-r--r-- | src/SPU.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/DSi_Camera.cpp b/src/DSi_Camera.cpp index c5fa29d..80e578f 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 8148bac..76fdd2d 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() |