HLE DSP: Implement partial embedded buffer updates (#782)

This commit is contained in:
wheremyfoodat
2025-07-21 01:59:46 +03:00
committed by GitHub
parent 146dc92a0f
commit 2ccb264a86
2 changed files with 27 additions and 2 deletions

View File

@@ -69,7 +69,9 @@ namespace Audio {
// In order to save up on CPU time.
uint enabledMixStages = 0;
u32 samplePosition; // Sample number into the current audio buffer
u32 samplePosition; // Sample number into the current audio buffer
u32 currentBufferPaddr; // Physical address of current audio buffer
float rateMultiplier;
u16 syncCount;
u16 currentBufferID;