diff options
| author | 2022-02-15 13:08:40 -0700 | |
|---|---|---|
| committer | 2022-02-15 13:08:40 -0700 | |
| commit | b5fd9c58cde80cd1f56baa964f38fd51d05c091f (patch) | |
| tree | dfb2c49c9228b25b83ca5a12a8ad2c328163e857 /src | |
| parent | Merge pull request #7891 from Morph1984/buffer_to_string_view (diff) | |
| parent | audio_core: Update current process revision (diff) | |
| download | yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar.gz yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar.xz yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.zip | |
Merge pull request #7877 from lat9nq/upd_rev
audio_core: Update current process revision
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio_core/common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/audio_core/common.h b/src/audio_core/common.h index 1ab537588..e6b95769f 100644 --- a/src/audio_core/common.h +++ b/src/audio_core/common.h | |||
| @@ -15,7 +15,9 @@ constexpr ResultCode ERR_INVALID_PARAMETERS{ErrorModule::Audio, 41}; | |||
| 15 | constexpr ResultCode ERR_SPLITTER_SORT_FAILED{ErrorModule::Audio, 43}; | 15 | constexpr ResultCode ERR_SPLITTER_SORT_FAILED{ErrorModule::Audio, 43}; |
| 16 | } // namespace Audren | 16 | } // namespace Audren |
| 17 | 17 | ||
| 18 | constexpr u32_le CURRENT_PROCESS_REVISION = Common::MakeMagic('R', 'E', 'V', '9'); | 18 | constexpr u8 BASE_REVISION = '0'; |
| 19 | constexpr u32_le CURRENT_PROCESS_REVISION = | ||
| 20 | Common::MakeMagic('R', 'E', 'V', static_cast<u8>(BASE_REVISION + 0xA)); | ||
| 19 | constexpr std::size_t MAX_MIX_BUFFERS = 24; | 21 | constexpr std::size_t MAX_MIX_BUFFERS = 24; |
| 20 | constexpr std::size_t MAX_BIQUAD_FILTERS = 2; | 22 | constexpr std::size_t MAX_BIQUAD_FILTERS = 2; |
| 21 | constexpr std::size_t MAX_CHANNEL_COUNT = 6; | 23 | constexpr std::size_t MAX_CHANNEL_COUNT = 6; |