HLE DSP: Fix AAC response stub

This commit is contained in:
wheremyfoodat 2024-05-01 16:10:51 +03:00
parent ad380b8c5a
commit e4b81d61a4
2 changed files with 8 additions and 5 deletions

View file

@ -294,12 +294,12 @@ namespace Audio::HLE {
struct SourceStatus {
struct Status {
u8 isEnabled; ///< Is this channel enabled? (Doesn't have to be playing anything.)
u8 enabled; ///< Is this channel enabled? (Doesn't have to be playing anything.)
u8 currentBufferIDDirty; ///< Non-zero when current_buffer_id changes
u16_le syncCount; ///< Is set by the DSP to the value of SourceConfiguration::sync_count
u32_dsp samplePosition; ///< Number of samples into the current buffer
u16_le currentBufferID; ///< Updated when a buffer finishes playing
u16_le lastBufferID; ///< Updated when all buffers in the queue finish playing
u16_le previousBufferID; ///< Updated when all buffers in the queue finish playing
};
Status status[sourceCount];