Skip to content

Commit

Permalink
Bump to v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillem96 committed Dec 24, 2018
1 parent a81bf24 commit fccd6b2
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions src/menu/gui/gui_argon_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
#define ELEM_SIZE 230
#define MARGIN 50

#define MINOR_VERSION 1
#define MAJOR_VERSION 0

void setup_gfx_gui()
{
Expand All @@ -48,8 +50,9 @@ void setup_gfx_gui()
void gui_init_argon_menu(void)
{
setup_gfx_gui();
g_gfx_con.scale = 4;
gfx_con_setpos(&g_gfx_con, 550, 10);
gfx_printf(&g_gfx_con, "ArgonNX");
gfx_printf(&g_gfx_con, "ArgonNX V%d.%d", MAJOR_VERSION, MINOR_VERSION);

char* dir = "argon/payloads";
const char* payloads = dirlist(dir, "*.bin", false);
Expand Down Expand Up @@ -97,13 +100,4 @@ void gui_init_argon_menu(void)

/* Clear all entries and menus */
gui_menu_pool_cleanup();
}

// W: 1280
// H: 720
// 4 columnes
// 2 Files
// 250 cada elem

// W / cols
// H / 2
}

0 comments on commit fccd6b2

Please sign in to comment.