summaryrefslogtreecommitdiff
path: root/src/audio_core/renderer
diff options
context:
space:
mode:
authorGravatar Liam2022-10-12 20:26:04 -0400
committerGravatar Liam2022-10-12 20:29:29 -0400
commita9ace6856de57f1124daaa77aacd6f36a64c68f7 (patch)
treeacf105c0e57d62889e2ebf88b463a7ebf7adc0b4 /src/audio_core/renderer
parentMerge pull request #9027 from yuzu-emu/revert-8987-another-name-for-reinforce... (diff)
downloadyuzu-a9ace6856de57f1124daaa77aacd6f36a64c68f7.tar.gz
yuzu-a9ace6856de57f1124daaa77aacd6f36a64c68f7.tar.xz
yuzu-a9ace6856de57f1124daaa77aacd6f36a64c68f7.zip
kernel: remove KWritableEvent
Diffstat (limited to 'src/audio_core/renderer')
-rw-r--r--src/audio_core/renderer/system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/renderer/system.cpp b/src/audio_core/renderer/system.cpp
index 7a217969e..bde794cd1 100644
--- a/src/audio_core/renderer/system.cpp
+++ b/src/audio_core/renderer/system.cpp
@@ -534,7 +534,7 @@ Result System::Update(std::span<const u8> input, std::span<u8> performance, std:
534 return result; 534 return result;
535 } 535 }
536 536
537 adsp_rendered_event->GetWritableEvent().Clear(); 537 adsp_rendered_event->Clear();
538 num_times_updated++; 538 num_times_updated++;
539 539
540 const auto end_time{core.CoreTiming().GetClockTicks()}; 540 const auto end_time{core.CoreTiming().GetClockTicks()};
@@ -625,7 +625,7 @@ void System::SendCommandToDsp() {
625 reset_command_buffers = false; 625 reset_command_buffers = false;
626 command_buffer_size = command_size; 626 command_buffer_size = command_size;
627 if (remaining_command_count == 0) { 627 if (remaining_command_count == 0) {
628 adsp_rendered_event->GetWritableEvent().Signal(); 628 adsp_rendered_event->Signal();
629 } 629 }
630 } else { 630 } else {
631 adsp.ClearRemainCount(session_id); 631 adsp.ClearRemainCount(session_id);