Skip to content

Commit

Permalink
Bump hekate to v5.5.4 and Nyx to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CTCaer committed Feb 6, 2021
1 parent 3b9ab66 commit c6ec175
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Versions.inc
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# IPL Version.
BLVERSION_MAJOR := 5
BLVERSION_MINOR := 5
BLVERSION_HOTFX := 3
BLVERSION_HOTFX := 4
BLVERSION_RSVD := 0

# Nyx Version.
NYXVERSION_MAJOR := 0
NYXVERSION_MINOR := 9
NYXVERSION_HOTFX := 9
NYXVERSION_MAJOR := 1
NYXVERSION_MINOR := 0
NYXVERSION_HOTFX := 0
NYXVERSION_RSVD := 0
2 changes: 1 addition & 1 deletion bootloader/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,7 @@ ment_t ment_top[] = {
MDEF_END()
};

menu_t menu_top = { ment_top, "hekate - CTCaer mod v5.5.3", 0, 0 };
menu_t menu_top = { ment_top, "hekate - CTCaer mod v5.5.4", 0, 0 };

extern void pivot_stack(u32 stack_top);

Expand Down
2 changes: 1 addition & 1 deletion bootloader/storage/nx_emmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ int nx_emmc_part_write(sdmmc_storage_t *storage, emmc_part_t *part, u32 sector_o
if (part->lba_start + sector_off > part->lba_end)
return 0;

return sdmmc_storage_write(&emmc_storage, part->lba_start + sector_off, num_sectors, buf);
return emummc_storage_write(part->lba_start + sector_off, num_sectors, buf);
}

void nx_emmc_get_autorcm_masks(u8 *mod0, u8 *mod1)
Expand Down
4 changes: 2 additions & 2 deletions nyx/nyx_gui/frontend/gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -1139,9 +1139,9 @@ static void _create_tab_about(lv_theme_t * th, lv_obj_t * parent)
lv_label_set_recolor(lbl_credits, true);
lv_label_set_static_text(lbl_credits,
"#C7EA46 hekate# (c) 2018, #C7EA46 naehrwert#, #C7EA46 st4rk#\n"
" (c) 2018-2020, #C7EA46 CTCaer#\n"
" (c) 2018-2021, #C7EA46 CTCaer#\n"
"\n"
"#C7EA46 Nyx GUI# (c) 2019-2020, #C7EA46 CTCaer#\n"
"#C7EA46 Nyx GUI# (c) 2019-2021, #C7EA46 CTCaer#\n"
"\n"
"Thanks to: #00CCFF derrek, nedwill, plutoo, #\n"
" #00CCFF shuffle2, smea, thexyz, yellows8 #\n"
Expand Down

0 comments on commit c6ec175

Please sign in to comment.