summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2025-04-24 13:58:40 +0100
committerTillmann Karras <tilkax@gmail.com>2025-04-25 01:09:15 +0100
commit8412a7c3363fdc7ad4eafa45e3e7c4eaa5b1e488 (patch)
treec826968a1349521703534a0c1284b1e690c08695
parentf0bacb826aa25b084e33f8005b425769316b0635 (diff)
DSPAccelerator: update comment (NFC)
-rw-r--r--Source/Core/Core/DSP/DSPAccelerator.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/Core/DSP/DSPAccelerator.cpp b/Source/Core/Core/DSP/DSPAccelerator.cpp
index 2ecf3121ce..8e0fbf5a9f 100644
--- a/Source/Core/Core/DSP/DSPAccelerator.cpp
+++ b/Source/Core/Core/DSP/DSPAccelerator.cpp
@@ -220,9 +220,8 @@ u16 Accelerator::ReadSample(const s16* coefs)
}
// Check for loop.
- // Somehow, YN1 and YN2 must be initialized with their "loop" values,
- // so yeah, it seems likely that we should raise an exception to let
- // the DSP program do that, at least if DSP_FORMAT == 0x0A.
+ // YN1 and YN2 need to be initialized with their "loop" values,
+ // which is usually done upon this exception.
if (m_current_address == (m_end_address + step_size - 1))
{
// Set address back to start address.