diff options
author | lat9nq <lat9nq@gmail.com> | 2022-02-11 04:31:47 +0100 |
---|---|---|
committer | lat9nq <lat9nq@gmail.com> | 2022-02-11 06:56:13 +0100 |
commit | 81806603ebd4d4acd02ce594253c53143729f926 (patch) | |
tree | c865c08b025cd2658ad310a9b8fc53a2dc0aadad | |
parent | Merge pull request #7861 from german77/user_features (diff) | |
download | yuzu-81806603ebd4d4acd02ce594253c53143729f926.tar yuzu-81806603ebd4d4acd02ce594253c53143729f926.tar.gz yuzu-81806603ebd4d4acd02ce594253c53143729f926.tar.bz2 yuzu-81806603ebd4d4acd02ce594253c53143729f926.tar.lz yuzu-81806603ebd4d4acd02ce594253c53143729f926.tar.xz yuzu-81806603ebd4d4acd02ce594253c53143729f926.tar.zst yuzu-81806603ebd4d4acd02ce594253c53143729f926.zip |
Diffstat (limited to '')
-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; |