mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 20:49:12 +12:00
HLE DSP: Fix AAC response stub
This commit is contained in:
parent
ad380b8c5a
commit
e4b81d61a4
2 changed files with 8 additions and 5 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue