Add rel versioning and adjust accordingly

This commit is contained in:
CTCaer
2024-07-02 18:29:39 +03:00
parent 280ebcc1e6
commit 0aea402632
8 changed files with 14 additions and 12 deletions

View File

@@ -35,7 +35,7 @@ hekate_config h_cfg;
const volatile ipl_ver_meta_t __attribute__((section ("._ipl_version"))) ipl_ver = {
.magic = NYX_MAGIC,
.version = (NYX_VER_MJ + '0') | ((NYX_VER_MN + '0') << 8) | ((NYX_VER_HF + '0') << 16),
.version = (NYX_VER_MJ + '0') | ((NYX_VER_MN + '0') << 8) | ((NYX_VER_HF + '0') << 16) | ((NYX_VER_RL) << 24),
.rsvd0 = 0,
.rsvd1 = 0
};