mirror of
https://github.com/CTCaer/hekate
synced 2025-01-21 22:36:08 +00:00
Further reduce hekate size by streamlining about screen
This commit is contained in:
parent
21e6a0cf7e
commit
253de81a6b
2 changed files with 14 additions and 14 deletions
|
@ -77,7 +77,7 @@ void tui_pbar(int x, int y, u32 val, u32 fgcol, u32 bgcol)
|
||||||
|
|
||||||
x += 7 * gfx_con.fntsz;
|
x += 7 * gfx_con.fntsz;
|
||||||
|
|
||||||
for (int i = 0; i < (gfx_con.fntsz >> 3) * 6; i++)
|
for (u32 i = 0; i < (gfx_con.fntsz >> 3) * 6; i++)
|
||||||
{
|
{
|
||||||
gfx_line(x, y + i + 1, x + 3 * val, y + i + 1, fgcol);
|
gfx_line(x, y + i + 1, x + 3 * val, y + i + 1, fgcol);
|
||||||
gfx_line(x + 3 * val, y + i + 1, x + 3 * 100, y + i + 1, bgcol);
|
gfx_line(x + 3 * val, y + i + 1, x + 3 * 100, y + i + 1, bgcol);
|
||||||
|
|
|
@ -454,7 +454,7 @@ void ini_list_launcher()
|
||||||
if (cfg_sec)
|
if (cfg_sec)
|
||||||
{
|
{
|
||||||
u32 non_cfg = 1;
|
u32 non_cfg = 1;
|
||||||
for (int j = 2; j < i; j++)
|
for (u32 j = 2; j < i; j++)
|
||||||
{
|
{
|
||||||
if (ments[j].type != INI_CHOICE)
|
if (ments[j].type != INI_CHOICE)
|
||||||
non_cfg++;
|
non_cfg++;
|
||||||
|
@ -596,7 +596,7 @@ void launch_firmware()
|
||||||
if (cfg_sec)
|
if (cfg_sec)
|
||||||
{
|
{
|
||||||
u8 non_cfg = 4;
|
u8 non_cfg = 4;
|
||||||
for (int j = 5; j < i; j++)
|
for (u32 j = 5; j < i; j++)
|
||||||
{
|
{
|
||||||
if (ments[j].type != INI_CHOICE)
|
if (ments[j].type != INI_CHOICE)
|
||||||
non_cfg++;
|
non_cfg++;
|
||||||
|
@ -1361,8 +1361,8 @@ void ipl_reload()
|
||||||
static void _about()
|
static void _about()
|
||||||
{
|
{
|
||||||
static const char credits[] =
|
static const char credits[] =
|
||||||
"\nhekate (c) 2018 naehrwert, st4rk\n\n"
|
"\nhekate (c) 2018, naehrwert, st4rk\n\n"
|
||||||
"CTCaer mod (c) 2018 CTCaer\n"
|
" (c) 2018-2021, CTCaer\n\n"
|
||||||
" ___________________________________________\n\n"
|
" ___________________________________________\n\n"
|
||||||
"Thanks to: %kderrek, nedwill, plutoo,\n"
|
"Thanks to: %kderrek, nedwill, plutoo,\n"
|
||||||
" shuffle2, smea, thexyz, yellows8%k\n"
|
" shuffle2, smea, thexyz, yellows8%k\n"
|
||||||
|
@ -1371,15 +1371,15 @@ static void _about()
|
||||||
" Shiny Quagsire, WinterMute\n"
|
" Shiny Quagsire, WinterMute\n"
|
||||||
" ___________________________________________\n\n"
|
" ___________________________________________\n\n"
|
||||||
"Open source and free packages used:\n\n"
|
"Open source and free packages used:\n\n"
|
||||||
" - FatFs R0.13b,\n"
|
" - FatFs R0.13b\n"
|
||||||
" Copyright (c) 2018, ChaN\n\n"
|
" (c) 2018, ChaN\n\n"
|
||||||
" - bcl-1.2.0,\n"
|
" - bcl-1.2.0\n"
|
||||||
" Copyright (c) 2003-2006, Marcus Geelnard\n\n"
|
" (c) 2003-2006, Marcus Geelnard\n\n"
|
||||||
" - Atmosphere (Exo st/types, prc id patches),\n"
|
" - Atmosphere (Exo st/types, prc id patches)\n"
|
||||||
" Copyright (c) 2018-2019, Atmosphere-NX\n\n"
|
" (c) 2018-2019, Atmosphere-NX\n\n"
|
||||||
" - elfload,\n"
|
" - elfload\n"
|
||||||
" Copyright (c) 2014, Owen Shepherd\n"
|
" (c) 2014, Owen Shepherd\n"
|
||||||
" Copyright (c) 2018, M4xw\n"
|
" (c) 2018, M4xw\n"
|
||||||
" ___________________________________________\n\n";
|
" ___________________________________________\n\n";
|
||||||
static const char octopus[] =
|
static const char octopus[] =
|
||||||
" %k___\n"
|
" %k___\n"
|
||||||
|
|
Loading…
Reference in a new issue