Skip to content

Commit

Permalink
better be safe than sorry
Browse files Browse the repository at this point in the history
  • Loading branch information
Arisotura committed Nov 2, 2023
1 parent 2959d08 commit 5ccd391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DSi_Camera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion src/SPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 5ccd391

Please sign in to comment.