diff options
author | bunnei <bunneidev@gmail.com> | 2022-02-15 21:08:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 21:08:40 +0100 |
commit | b5fd9c58cde80cd1f56baa964f38fd51d05c091f (patch) | |
tree | dfb2c49c9228b25b83ca5a12a8ad2c328163e857 /src/audio_core | |
parent | Merge pull request #7891 from Morph1984/buffer_to_string_view (diff) | |
parent | audio_core: Update current process revision (diff) | |
download | yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar.gz yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar.bz2 yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar.lz yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar.xz yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.tar.zst yuzu-b5fd9c58cde80cd1f56baa964f38fd51d05c091f.zip |
Diffstat (limited to 'src/audio_core')
-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}; constexpr ResultCode ERR_SPLITTER_SORT_FAILED{ErrorModule::Audio, 43}; } // namespace Audren -constexpr u32_le CURRENT_PROCESS_REVISION = Common::MakeMagic('R', 'E', 'V', '9'); +constexpr u8 BASE_REVISION = '0'; +constexpr u32_le CURRENT_PROCESS_REVISION = + Common::MakeMagic('R', 'E', 'V', static_cast<u8>(BASE_REVISION + 0xA)); constexpr std::size_t MAX_MIX_BUFFERS = 24; constexpr std::size_t MAX_BIQUAD_FILTERS = 2; constexpr std::size_t MAX_CHANNEL_COUNT = 6; |