diff options
author | lat9nq <lat9nq@gmail.com> | 2022-02-10 22:31:47 -0500 |
---|---|---|
committer | lat9nq <lat9nq@gmail.com> | 2022-02-11 00:56:13 -0500 |
commit | 81806603ebd4d4acd02ce594253c53143729f926 (patch) | |
tree | c865c08b025cd2658ad310a9b8fc53a2dc0aadad /src/audio_core/common.h | |
parent | 1105614b86450f64e04d0d409aa9d91883f3258c (diff) |
audio_core: Update current process revision
Update CURRENT_PROCESS_REVISION from REV9 to REVA.
Used by Nintendo Entertainment System - Nintendo Switch Online 6.0.0 and
Super Nintendo Entertainment System - Nintendo Switch Online 3.0.0.
Diffstat (limited to 'src/audio_core/common.h')
-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; |