diff options
| author | 2017-01-30 02:52:25 -0500 | |
|---|---|---|
| committer | 2017-01-29 23:52:25 -0800 | |
| commit | ff28080091aed21d216fb6794652d4938776ca5c (patch) | |
| tree | 872fcc2e6e031eff04976b10a6e4e65e9ffa140e /src/audio_core/hle/source.h | |
| parent | Merge pull request #2368 from wwylele/camera-2 (diff) | |
| download | yuzu-ff28080091aed21d216fb6794652d4938776ca5c.tar.gz yuzu-ff28080091aed21d216fb6794652d4938776ca5c.tar.xz yuzu-ff28080091aed21d216fb6794652d4938776ca5c.zip | |
Support looping HLE audio (#2422)
* Support looping HLE audio
* DSP: Fix dirty bit clears, handle nonmonotonically incrementing IDs
* DSP: Add start offset support
Diffstat (limited to 'src/audio_core/hle/source.h')
| -rw-r--r-- | src/audio_core/hle/source.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/audio_core/hle/source.h b/src/audio_core/hle/source.h index 3d725f2a3..ccb7f064f 100644 --- a/src/audio_core/hle/source.h +++ b/src/audio_core/hle/source.h | |||
| @@ -76,6 +76,8 @@ private: | |||
| 76 | Format format; | 76 | Format format; |
| 77 | 77 | ||
| 78 | bool from_queue; | 78 | bool from_queue; |
| 79 | u32_dsp play_position; // = 0; | ||
| 80 | bool has_played; // = false; | ||
| 79 | }; | 81 | }; |
| 80 | 82 | ||
| 81 | struct BufferOrder { | 83 | struct BufferOrder { |